例如我有asp.net2.0的调用代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="index.aspx.cs" Inherits="index" %>
变成1.1该如何写?

解决方案 »

  1.   

    <%@ Page language="c#" Codebehind="NightAuditList.aspx.cs" AutoEventWireup="false" Inherits="Etmc.EtmcBo.Hotel.Audit.NightAuditList" %>
      

  2.   

    <%@ Page language="c#" AutoEventWireup="true" Inherits="index" Codebehind="index.aspx.cs" %>
    <%@ Register TagPrefix="..." Namespace="..." Assembly="..." %>
      

  3.   

    <%@ Page language="c#" Codebehind="index.aspx.cs" AutoEventWireup="false" Inherits="命名空间.index" %>