大家好,又见面了,我是你们的朋友全栈君。
.aspx设置AutoEventWireup=false情况下,Page_Load方法没有办法成为Load事件的订阅者,
我们必须手工进行相应的subscribe,不然我们就看不到输出的hello.
<%@ Page Language=”C#” AutoEventWireup=”false” CodeFile=”Default.aspx.cs” Inherits=”_Default” %>
public partial class _Default : System.Web.UI.Page
{
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
this.Load = this.Page_Load;
}
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(“hello”);
}
}
从这个简单例子,可以看出AutoEventWireup=true时候像Page_xx都成为了保留方法了。
转载于:https://www.cnblogs.com/shawnliu/archive/2008/09/30/1302665.html
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/140187.html原文链接:https://javaforall.cn