[Mono-list] XSP Server -- Codebehind

Gonzalo Paniagua Javier gonzalo@ximian.com
24 Feb 2003 00:54:06 +0100


El jue, 20 de 02 de 2003 a las 16:26, Karl Gauthier escribió:
> Hello,
> I am not able to display my aspx file using this directive :
> ********************************
> <%@ Page language="C#" Codebehind="frmLogin.aspx.cs"
> AutoEventWireup="false" Inherits="Test_Mono_CS.CfrmLogin" %>
> ********************************

The class in the Inherits attribute will be searched for in the private
bin path (the bin directory) from the application root.

Ie, if you run the server in /a/b directory, there should be a /a/b/bin
directory containing the dlls that your application needs. Just the same
as you do when deploying using IIS.

-Gonzalo