Hello - just trying to get a codebehind control to work using gmcs - suggestions appreciated: In the aspx file's @page directive - I've swapped out using the Inherits and using src instead of CodeFile (always same results). gmcs -v /t:library /out:amazonecs.dll -r:System.Web -r:System.Data -r:System csharp.aspx.cs csharp.aspx.cs(18,9): error CS0103: The name `testlabel' does not exist in the current context Compilation failed: 1 error(s), 0 warnings (aspx page) <%@ Page Language="C#" AutoEventWireup="true" CodeFile="csharp.aspx.cs" Inherits="csharp" % <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd <http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">> "> <html xmlns="http://www.w3.org/1999/xhtml" <head runat="server" <titleUntitled Page</title </head <body <form id="form1" runat="server" <div <asp:label id="testlabel" runat="server"</asp:label </div </form </body </html (csharp.aspx.cs codebehind file) using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; //using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; partial class csharp : System.Web.UI.Page { // protected System.Web.UI.WebControls.Label testlabel; protected void Page_Load(object sender, EventArgs e) { testlabel.Text = "test codebehind"; //Response.Write = "test codebehind"; } }
_______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
