Hi,
I have developed a web app on XP using Visual Studio 2003, and need to
deploy it on a Windows 2003 server for testing.
From Visual Studio, I select "Copy Project", choose web access method
- FrontPage, and select that only the files that are needed to run be
copied over to the server. I get an error:
Unable to open Web project '/'. Not Found.
In trying to resolve this, I have done the following:
* placed a file called get_aspx_ver_.aspx, contents of file:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body>
</body>
</html>
* registered .net with IIS via aspnet_regis and registered
aspnet_isapi.dll using regsvr32
* added all networking, file, management & monitoring Windows
components via Control Panels --> Add or Remove Windows Components.
* In IIS --> Web Extension Services --> ASP.net 1.1..... --> changed
prohibited to allowed.
* Installed Front Page Extensions. In IIS MMC, go to Server
Extensions 2002 Configure, click on 'Settings' to allow author &
developers to upload executables over to test server.
Also, there is a directory in c:\inetpub\wwwroot called
'webctrl_client' that needs to be copied as well. How can I get 'Copy
Project' to copy this over to the test server? This dir is needed for
Microsoft's tab strip control to work.
Thanks in advance. |