please do not post same questions again and again.
Vicky
please do not post same questions again and again.
Vicky
HI Aransiola, If you use the Session variable rather then application as i saw in your example above then this will work fine. Use like this: Session("userscount") in place of application("userscount") and if you want to count then application variable is fine but you have to use application_start event .
Vicky
Hi dear, For converting from VB to C# please go through the following link and that is very good tool absolutely free .... http://www.eggheadcafe.com/articles/cstovbweb/converter.aspx so enjoy it...
Vicky
Hi alav, Did you mean huge number of rows to be inserted in database at same time.If this is the case then you can use SqlBulkCopy class of .NET 2.0.
Vicky
HI Imran, YOu can generate the respective service id at database level.If you are using database table then simply declare a variable and then select max id and increase by 1.See the example below - DECLARE @intMAXID INTEGER SET NOCOUNT ON --Get the Maximum ID from the Table and increment it by 1 SELECT @intMaxID = MAX([ContactId])+1 FROM TESTTABLE IF @intMaxID is NULL select @intMaxID = 1 I hope this is helpful for you as i understand the problem .If you want another then please let me know.
Vicky
Hi , Store the ConnectionString in web.Config's AppSetting .Add a new class(note this is not amodule) and write your functions to retrieve the data from database .IN code behind page , call the methods from the class to display the records into page.
Vicky
HI Imran, That is not the case and you can use any number of controls that have the AutoPostBack property "true".Could you explain me the exact scenario what you want to ask?
Vicky
HI, With the try,catch and throw you can also use "finally" and within the finally block you can release the resources that have occupied memory. thanks, vikram
Vicky