Är ingen specialist men tycker att det låter som om du inte har kompilerat din code-behind-sida.
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace nicke
{
public class MyCodeBehind
{
public Label test;
public void Page_Load()
{
test.Text = DateTime.Now.ToString("d");
}
}
}
<%@ Page CodeBehind="default.aspx.cs" Language="c#" Inherits="nicke.MyCodeBehind" %>
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 'nicke.MyCodeBehind'.
Source Error:
Line 1: <%@ Page CodeBehind="default.aspx.cs" Language="c#" Inherits="nicke.MyCodeBehind" %>
