Latest Answer: Query String is also one method to pass the small amount of value from one page to another.Query String is a parameter passed to the page, the page load may be based on this passed value. Basically this value is passed as follows..' ...
Latest Answer: ViewState data is stored in the hidden field. When the page is submitted to the server, the data is sent to the server in the form of hidden fields for each control. If th viewstate of the control is enable true, te value is retained on the post back ...
Latest Answer: A custom web server control is created by modifying the properties of existing control while custom web user control is mostly a complex control (consists of several controls).A custom web server control is stored as an assembly which can be added to ...
Which is the best session management system in ASP.Net - viewstate, cookies, application, Urlencoding? Justify
Latest Answer: In asp.net List server controls like DataGrid, ListBox and HTMLSelect use a collection as a data source. for example listbox uses list item as a chield control, but in case of windows there is no list items.When you call DataBind on a parent control, ...
Latest Answer: Generic provides typesafety for classes, proporties, delegates, Methods. ...
Latest Answer: While executing the dynamic web page, at the end of execution, the value of session variables is calculated, compressed and transmitted to the client via a Cookie. At this stage the state resides entirely and only on the client file system (or RAM). ...
Latest Answer: Because the server side validation creates a dynamic javascript to validate the control at client side. You can do it without useing validation cotrol and by writing the dynamic javascript. ...
Latest Answer: 1. In-Proc: the default provider.2. Session Service: ASPNET_Session service. a diff service, runs outside IIS's service. pros: in case of app recycle - the session remains the same; helpful when it's a web garden. cons: cross process communication ...
View page << Previous 1 2 3 [4] 5 6 7 8 9 10 Next >>

Go Top