Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem what is this

Status
Not open for further replies.

Chrissirhc

Programmer
May 20, 2000
926
GB
My web app works locally, but when I copy it to a webserver I get this error.

Line 1: <%@ Page language=&quot;c#&quot; Codebehind=&quot;Dashboard.aspx.cs&quot; AutoEventWireup=&quot;false&quot; Inherits=&quot;RADashboard.WebForm1&quot; %>
Line 2: <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot; >
Line 3: <HTML>


If I delete the inherits=&quot;RADashboard.WebForm1&quot;

The page loads but looks as if the c# doesn't run.

Thanks in advance,

Chris


 
Is the assembly containing RADashboard installed?

Chip H.
 
Needed to copy the correct dlls to the right location on the web server.

Thanks,
 
The assembly containing RADashboard probably needs to be signed (see the doc for sn.exe), and placed in the global assembly cache, then (you can do this yourself by dropping the DLL(s) into c:\winnt\assembly)

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top