Answer Questions
Neha Agarwal ASP PAGING
Hello World, Im in need of some theory and know how on PAGING Records. I'am using ASP.VBScript and would like to display my records with some navigation ect. My code below will show the amount of records I ask it though it will always start from the first record I have no marker to say start from record 5 or something of the sort, I also need to have a next / back or numbers for the the next page ect. General theory questions: ...Show All
Worn Consuming Xml Web Service using XmlHttpRequest
Hi, I have a web service that is consumed from the client side i.e. using Java Script XmlHttpRequest object . It works fine on the local machine but doesn't work on remote machines. On remote machines, I'm getting 500 "Internal Server error". I suspect that I need to configure IIS to allow access to the Web Service. But since its working on the local machine and not on remote machines, I'm not sure how to grant access specifically for ...Show All
Mrs. B Assembly Unload
Hi, We want to update our dll files in our application, while user work with that application. Our current update mechanism closes the application, copy updated dll files and runs the application again. But we don't want to close whole application while dll files are copying. Is there a way to unload an individual assembly (dll) without unloading all of the application domains that contain it Thank you. Il ...Show All
Axel Wolters WebClient with Progress bar
I am writing a small application which allows user to enter an URL then download a file on the net. In addition, I use the progress bar to show the downloading status. These code as below using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Net; namespace DowloaderProgress { public partial class Form1 ...Show All
danhood System.Data.OracleClient versus Oracle.DataAccess.Client (ODP.NET)
Oracle provides .NET classes for accessing an Oracle database. These are derived from ADO.NET base classes and thus are highly compatible with everything else. This library is sometimes referred to as ODP.NET and is found in the Oracle.DataAccess.Client namespace. Similarly, Microsoft provides .NET classes for accessing an Oracle database. These are just the default classes provided with the .NET framework and are found in namespace System.Da ...Show All
Nico1947 Advantages and disadvantages of using AsyncCall over Threading
Hi buddies, Can any one please help me to understand the advantages and disadvantages of using AsyncCall over Threading I am totally confused on these two. Thanks for your time to read my question and sending me the answer. Regards, Vinu.P.K The basics: http://msdn2.microsoft.com/en-us/29eafad8.aspx Managed Threading Asynchronous Programming Design Pa ...Show All
MickB XmlValidatingReader / default namespace
hi, small code app i made to simulate my problem : just paste it in a class and run as console app: using System; using System.Xml; using System.Xml.Schema; using System.IO; namespace ConsoleAppXSDTestApp { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] ...Show All
CaffeineMartini <summary> info using Reflection ?
Is there any way to access the <summary> information of a class using reflection. All i have is the Assembly name. Using this i can access the Class, but how do i get to the <summary></summary> info <summary> isn't compiled into an assembly so you can't retrieve it with reflection. See the description of the /doc compile option . That said, it does get compiled into an XML file with the name assembly. ...Show All
New-Bee HttpWebRequest works in IE but not WinForm (2.0)
Hi, I have the following code working correctly inside an asp.net webform to connect to the remote https server and do basic authentication: HttpWebRequest wReq = (HttpWebRequest)WebRequest.Create(url); wReq.CookieContainer = mCookies; wReq.Credentials = new NetworkCredential("username", "password"); wResp = (HttpWebResponse)wReq.GetResponse(); It is very straightforward, and the getresponse() returns what I would expec ...Show All
SanderV DataGrid Problem
I have few problems, 1. I am using datagrid with readonly textboxes, i am assigning the null, i could see that null text in datagrid, but when i insert the records through this it is updating null values for the hidden textboxes. 2. How to update the relations created in dataset to the database. 3. I am develping a banking application, in that on of those pages contain datagrid, two users opened the same page with same records at single ...Show All
Hank2 Filtering on special characters doesn't work
Hi Guys, I'm trying to filter on a message wich contains lots of special chars (tabs, enters, cr's, single quotes, brackets) . Sample below. I tried escaping by doubling the single quotes and escaping the other special chars between [] but it doesn't work. I tried almost any combination but it still doesn't work! Help anyone Thanks Bjorn ORA-06550: line 1, column 37: PLS-00302: component 'GET_TMP_USER_TABLE_CONTEN ...Show All
GSReddy An error occurs when invoking a win32 API
Dear All, I'm getting this error when I invoke any API function from visual studio 2005 PInvokeStackImbalance was detected Message: A call to PInvoke function 'DubaiLandDesktop!DubaiLandDesktop.frmShutDown::ExitWindowsEx' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature ...Show All
DesaiSandeep run servers localy
how can i run 2 servers localy in .net remoting i tried register two different ports in the server side but i got an exception. do i need to create 2 different projects , each one for a server thanks in advanced Hi, I find that a bit strange. The exception that you are receiving does not seem to be anything related to .NET Remoting but some kind of corruption in the JIT Debugger. Somehow that error seems to be ...Show All
Petr Jakobe Strange behaviour of JET Database Engine
Hi, JET says, that my INSERT INTO-command, which has been generated by a CommandBuilder, has a syntax error. Is it possible to find out the SQL-command, which is sent to JET from a DataAdapter Thanks! The problem is that there isn't any checking for reserved words when the SQL statements are auto generated. Both Name and Password are Jet reserved words. You can rename them in your database table or enclose t ...Show All
nagarajuch persisting session information across different browsers.
i am using session variables to maintain user specific info in a website.if i login as ... lets say user1 and i set the session("username") = user1 and then i launch another browser wher i login as user2...session("username") = user2. now when i refresh the first browser the session("username") gets replaced with user2. how do i prevent this and maintain session uniqueness per browser. Hello, I ...Show All
