Asp.net Page指令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.net Page指令相关的知识,希望对你有一定的参考价值。
Page指令为编译器编译页面时使用的指令
指令的格式为
<%@ [Directive] [Attribute=value]%>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Listing03-02.aspx.cs" Inherits="AspnetStudy._03.Listing03_02" %>
中的CodeBehind用于指定隐藏代码页面,而Inherits用于指定编译后类的全名,其中AspnetStudy._03为命名空间的名字,而Listing03_02为类的名字
以上是关于Asp.net Page指令的主要内容,如果未能解决你的问题,请参考以下文章