Welcome to MSDN Blogs Sign in | Join | Help

Pradeep Anchan's Blog

Today is the first day of the rest of my life......

February 2007 - Posts

Unable to create and debug ASP.NET web application using Visual Studio 2005 on IIS 7.0
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...
How to retrieve the HTML response within a ASP.NET Page
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...
How to retrieve the HTML response generated by ASP.NET pages using HTTP module
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...
ASP.NET Tab is missing in the IIS MMC in the web server running Windows XP Pro x64 Edition with .NET Framework 2.0 (WOW64)
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...
Page view tracker