Complete MicrosoftDot Net Topics – PDF Download 1. What is ASP.Net? It is a framework developed by Microsoft on which we can develop new generation web sites using web forms(aspx), MVC, HTML, Javascript, CSS etc. Its successor of Microsoft Active Server Pages(ASP). Currently there is ASP.NET 4.0, which is used to develop web sites. There are various page extensions provided by Microsoft that are being used for web site development. Eg: aspx, asmx, ascx, ashx, cs, vb, html, XML etc. 2. What’s the use of Response.Output.Write()? We can write formatted output using Response.Output.Write(). 3. What is caching? Caching is a technique used to increase performance by keeping frequently accessed data or files in memory. The request for a cached file/data will be accessed from cache instead of actual location of that file. 4. What is Cross Page Posting? When we click submit button on a web page, the page post the data to the same page. The techni...
Comments
Post a Comment