Nov 21, 2008
If you are taking advantage of the App_Code folder to develop an ASP.NET WebSite some times you need to use code files that are written in different .NET languages. For example, you may want to use C# files and VB.NET files in the same web site: To be...
1 comments
Filed under: Visual Studio 2008, VS2008, VWD, tips and tricks, Visual Studio, Development, ASP.NET, VSTS
Oct 19, 2008
If you are using ASP.NET Ajax and you are having problems with a web page one quick and dirty way to debug it is to add tracing statements. You do this by using the "Sys.Debug.trace" function. For example: 1: < script language ="javascript"...
0 comments
Filed under: Development, ASP.NET
Oct 15, 2008
To run a page in Debug mode you will have to choose Debug –> Start Debugging or just press F5 . Debugging support is not enabled by default and if you have not run the debugger before on this web site, you will need to configure it. This is internally...
0 comments
Filed under: Visual Studio 2008, VS2008, VWD, tips and tricks, Visual Studio, Development, ASP.NET
Oct 10, 2008
When writing JavaScript for a web application, there may be times when you want to do something different depending on the browser that is requesting the page. ASP.NET Ajax has an easy way to this with the Sys.Browser object. For example, let's say you...
0 comments
Filed under: tips and tricks, Development, ASP.NET
Sep 12, 2008
Knowing when to restart IIS to pick up various types of changes to your application has traditionally been a challenge. IIS and ASP.NET are both stateful software systems, which heavily rely on cached state that is loaded once to provide high performance...
2 comments
Filed under: IIS7, ASP.NET, IIS, troubleshooting, development, AppCmd
Feb 11, 2008
The integration of IIS and ASP.NET authentication stages in Integrated mode applications brings a lot of benefits, including being able to use ASP.NET authentication features like Forms Authentication for the entire web site. However, it also prevents...
1 comments
Filed under: ASP.NET, development, Integrated pipeline
Aug 16, 2007
This article, the first in the IIS7 .NET Developer series, focuses on getting started with developing IIS7 web server features based on the .NET Framework. Learn about the options you have for your development environment, how to set up your Visual Studio...
4 comments
Filed under: IIS7, ASP.NET, development, Integrated pipeline, IIS News Item
May 24, 2007
In a web application, it’s often necessary to redirect clients requesting one url to another url. A while ago, I wrote a module to do basic http redirection for an ASP.NET application. The HttpRedirection module allows you to configure regular expression...
1 comments
Filed under: IIS7, ASP.NET, development, IIS News Item, Goodies