What will happen if the server confugration file and the application confugration file have different values for sassion state ASP.NET?
How does cookies differ from session variables?
Latest Answer: Cookies:1) Cookies can hold small amount of data in text format.2) Cookies created on browser.3) Cookies can be disabled by user computer.Session: 1) Session can hold large amount of data. 2) Session created on the Server.3) Session can not be disabled ...
What will happen if the Server Configuration File and the Application configuration file have different values for session state?
Latest Answer: Application Configuration File Variables will over ride the values of server configuration file if allowoverride set as True, if allowoverride is false then Application Configuration file variables cannot override the values of server configuration ...
Which namespace is used for event log support?
Latest Answer: System.Diagnostics ...
Does every application done in ASP.NET 1.x need to be migrated to ASP.NET 2.0? If yes why and if not why not?
What methods must be used with the application object to ensure that only one process access a varaible at a time?
Latest Answer: The HttpApplicationState class provides two methods, Lock and Unlock, that allow only one thread at a time to access application-state variables. Calling Lock on the Application object causes ASP.NET to block attempts by code running on other worker threads ...
I have created a custom control to get the values and sum them, Here I am able to get display the controls but I am not able to add the values in the text box which means that I am not able to catch the
Latest Answer: First you may build the control ex Button b = new Button(); b.Text = "ex"; Then you add the button to other control right ? like this.control.add(b); but before add the button (b) to other control, you add the even to the button (b) because its a button, ...
In web.config file how many cookies we can used?? plz help me
Latest Answer: Generally 20 cookies we can use ...
Hi all,When i run my project the following error is given It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused
Latest Answer: This is the error which is caused frequently by most of them.Reason for this error is when ever you create a virtual directory of your solution see that web.config is also included.If your project is in IIS and web.config is not in IIS you get this error. ...
Which control is lightwieght control among gridview, detailsview, formview, datalist and repeater controls in ASP.NET 2.0
Latest Answer: Repeater is the LightWieght Control among all of these ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top