What is Conditional Bloating? How do you handle it?
Latest Answer: Bloating is an activity of performance improvement, which is basically introduced in AJAX controls. The property "UpdateMode" is responsible for bloating for example the control updatepanel if you set "UpdateMode"="Conditional" then that clears your ...
i want to know the complete follow of the page how it store cookies and user info into session and when it get terminate also is it possible to call in-process application to out-process?
Latest Answer: we know Http is an state-less protocol which is required for interaction between clinet and server .so there is an need to remeber state of request raised by an web browser so that web server can recognize you have already previously visited or not.There ...
Why do we binds the data in Web-application not in the Windows-application
Latest Answer: Actually this is not about converting server output into HTML, as asp.net could do it automatically like desktop does.the reason behind the databind() method is giving you an option whether to bind the data or not, as websites are stateless and databinding ...
What methods must be used with the application object to ensure that only one process accross a varaible at a time?
Latest Answer: Dataset.clone() copies the structure of the dataset including all data table schemas,relations and constraints. and Dataset.copy() copies the structure with data of the Dataset.Isha Ahuja ...
Latest Answer: IsPostBack is a property which returns boolean
value. It checks weather the page is postedback or not.
Note: Loading a page and Post Back is
two different things.e.gPage_Load{if(!IsPostBack){
SqlConnection con = new
SqlConnection(ConfigurationManager.ConnectionStrings["TestConStr"].ConnectionString); ...
What I should answer person on interview on question “Can User Control be stored in library?”. The correct answer – Yes, but interviewer demanding that correct answer – No because User controls are not pre-compilable
Yes
Latest Answer: Event- An event is a message sent by a control to notify the occurrence of an action.
Function- A Function is written to be used by the objects. A functions always return a value. ...
One of the language enhancements in .NET 2.0—available in both VB.NET 2005 and C# 2.0—is support for partial classes. In a nutshell, partial classes mean that your class definition can be split
Latest Answer: Using Partial Classes we can have same class span across multiple files.However it is considered as a single class by CLR. Infact,if we can take a look into IL code, we will find a single class only. So two developers can work on their own copy ...
Latest Answer: It facilitates sequential access to file.The property and method arguments can be any of the properties and methods associated with the TextStream object. Note that in actual usage TextStream is replaced by a variable placeholder representing the ...
View page << Previous 1 [2] 3 4 5 6 7 8 9 10 Next >>

Go Top