Top questions

Post

New Post


Find by name:

Question Answer
What is __ viewstate? What is viewstate? Viewstate is a technique used in ASP.NET to convey changes to the state of web forms across postbacks. A postback is the exchange of form data with the server. The viewstate of a page is, by default, stored in a hidden form field in the web page named __VIEWSTATE and this is where problems can arise.
What is a web farm? Answer # A web farm is a group of two or more servers used to host the same site. Web farms increase the capacity of a web site, and improve availability by providing fail-over. Web farms are universally used for high-traffic and mission critical web sites.
What is a Web pool? Answer # When you run IIS 6.0 in worker process isolation mode, you can separate different Web applications and Web sites into groups known as application pools. An application pool is a group of one or more URLs that are served by a worker process or set of worker processes.



Back to HomePage