ASP.NET 2 web application problem!

  • Thread starter Thread starter Michael G.
  • Start date Start date
M

Michael G.

Hello!

We developed a small application using VS2005/ASP.NET 2.
On development station it worked well.
Then we published the site to a directory on the development. comp.,
and brought to the client.
The client's system guy set up an IIS virtual directory with all
definitions.
Then the problem: if the virtual directory is defined as ASP.NET 1 then
IIS access the web application and displays some errors since it cannot
recognize ASP.NET 2 web configuration XML. If the virtual dir. defined
as ASP.NET 2, so the IIS cannot find web application at all and
displays message looking like "web application not found".
What is the problem?

TIA!
Michael
 
Also, have we ensured that the .Net Framework 2.0 is installed on the
target system (as it needs to be installed specifically because it
doesn't ship with the OS).

Regards,
Vaibhav
www.nagarro.com
 
I guess it is installed there since they are able to select it ...

The post says "If the virtual dir. defined as ASP.NET 2......"
 
1. Make sure .NET 2.0 is installed

2. Create an application pool with .NET 2.0

3. Add the virtual directory there instead of under the standard app pool,
which is configured for 1.x


--
Gregory A. Beamer

*************************************************
Think Outside the Box!
*************************************************
 
Back
Top