如何在使用c#的asp.net网站项目中使用Codebehind?

时间:2012-11-20 07:05:20

标签: c# asp.net code-behind asyncfileupload

我正在使用这个:

<%@ Page Title="" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true"
Codefile="Admin1.aspx.cs" Inherits="admin1" %>

但我的某个网站功能在托管服务器中无效(asyncfileupload),但它在localhost中工作...

不知怎的,我知道我正在使用codefile代替codebehind的bcoz,所以我的查询是如何使用codebehind我试过这个:

<%@ Page Title="" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true"
CodeBehind="Admin1.aspx.cs" Inherits="admin1" %>

但它的错误说无法加载admin1那么现在该怎么办?我如何让我的网站运作?

更新: -

这是我的.cs文件代码

  public partial class admin1 : System.Web.UI.Page
{
   //all the codes
}

0 个答案:

没有答案