Hi,
I don't have much experience with deploying ASP.NET solutions. I've created an ASP.NET solution on my development server and it works well. In this solution I have a number of aspx pages, a custom DLL (ClickOnceButton.dll) and a Web Reference.
I have then copied this solution to my production server and I am getting the parser error that I have seen numerous other people having trouble with,
-------------------------
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.
Parser Error Message: Could not load type 'Fares.search'.
Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false" Codebehind="search.aspx.vb
" Inherits="Fares.search"%>
-------------------------
A few points,
(1) I have created a virtual directory called 'Fares' on the prod server, like the one on the dev server and have put all my files in that.
(2) The dlls are all in the bin directory where they should be.
(3) I have tried rebuilding the solution and copying it across to ensure that it is not a rebuild error. No luck.
(4) The search.aspx page has a codebehind page "search.aspx.vb" and this contains a "Public Class search".
(5) I don't have Visual Studio .NET on the production server so I can't rebuild the application from there.
(6) I copied the files across using Windows Explorer. I couldn't use the VS.NET Copy functionality as I had to copy the files from the dev server to the intermediary server and then to the prod server as the two can't see each other.
(7) I created a dummy ASP file that said 'Hello World' and it works fine, so I don't think it's a folder permissions issue.
Does anyone have any idea what I'm doing wrong?
Thanks,
Malcolm
Start Free Trial