Please help me figure this one out:<BR><BR>I have a solution ("rms"), which has an ASP.NET Application startup project ("asp"), which refers to four Class Library projects.<BR><BR>So I build the solution and then add a Web Setup Project ("WebSetup1"). The Web Setup Project compiles successfully. To test in my machine, I do a right-click on WebSetup1 in the Solution Explorer and select Install. <BR><BR>Then I open a browser window and type "http://localhost/RMS" where RMS is the virtual directory. <BR><BR>I get this error:<BR><BR>Server Error in '/RMS/user' Application.<BR>--------------------------------------------------------------------------------<BR><BR>Parser Error <BR>Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. <BR><BR>Parser Error Message: Could not load type 'asp.Login'.<BR><BR>Source Error: <BR><BR><BR>Line 1: <%@ Page CodeBehind="Login.aspx.cs" Language="c#" AutoEventWireup="false" Inherits="asp.Login" %><BR>Line 2: <!-- #include file="....htmlPage_Head_index.html" --><BR>Line 3: <tr><BR> <BR><BR>Source File: C:InetpubwwwrootRMSuserLogin.aspx Line: 1 <BR><BR><BR>--------------------------------------------------------------------------------<BR>Version Information: Microsoft .NET Framework Version:1.0.3705.0; ASP.NET Version:1.0.3705.0 <BR><BR><BR>What does this mean ? Does this mean that the server cannot find the codebehind / aspx file ? Do I need to add files to the Web Setup Project, or create another Web Setup Project ?<BR><BR>I appreciate any suggestions or comments. Thanks in advance !<BR><BR>I had similar error. Go into IIS management console on the web server, find your web directory, right-click...properties. You should see a create button on that dialog box. Click create and that turns your web app truly into a web app. <BR><BR>Hope that helps,<BR>Kory Pukash<BR>MCT, MCSDHey thanks ! Can't believe it was that simple. <BR><BR>So the application is up and running in my machine. The thing is, when I copied the installation files to another machine, ran Setup.exe and everything (yes, I checked the setting in the IIS management console), the application did not quite work. Yes, the default page was displayed when I typed http://<computer name>/<virtual directory> but the application doesn't seem to be connecting to the database. This web server, by the way, only has the .NET framework. And the database is on another machine.<BR><BR>Is there anything missing in the setup ? Do I need to configure anything ? Is that why the application doesn't connect to the database ? The application works fine from my machine (other users can access the application from it) -- I have VIsual Studio -- but try accessing it from this other web server with only the framework installed, and the application bogs down.<BR><BR>What could be wrong ?How are you connecting to the database. connectionstring in ado.net or through a property setting within a web control? If I could see that I might be able to help. <BR><BR>KPHi Kory,<BR><BR>Before anything else, thanks for the replies ! <BR><BR>I stumbled on the cause of the problem by accident. Turns out that the web server machine did not have MDAC 2.6 installed. I installed it, and presto ! the application is up and running.<BR><BR>I guess the moral is, never assume that the remote server has all the necessary installations ^-^