February 2007 - Posts
When we try to create ASP.NET web application using Visual Studio 2005 on Windows Vista running IIS 7.0, we may get the following error: "Unable to create the Web 'http://localhost/<website>'. The Web server does not appear to have the FrontPage
Read More...
Here is a simple way to do it. We can implement this by overriding the Render method of the Page class. protected override void Render(HtmlTextWriter writer) { System.Text.StringBuilder sb = new System.Text.StringBuilder(); System.IO.StringWriter sw =
Read More...
Many developers come up with this question: How to retrieve the HTML response generated by ASP.NET pages? We can implement this by writing a HTTP module. We need to create a custom Stream object and set the Filter property of the Response object to this
Read More...
After installing .NET Framework 2.0 on Windows XP Pro x64 Edition, you don't see the ASP.NET Tab in IIS MMC. This happens if IIS is running in WOW64 mode. In other words, if IIS is running in 32 bit mode on a 64 bit Windows operating system, the ASP.NET
Read More...