大家好,又见面了,我是你们的朋友全栈君。
1.在web 页面添加一个label和button控件
View Code
<%@ Page Language="C#" AutoEventWireup="false" CodeFile="AutoEventWireup属性.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server" Text="为什么不显示" BackColor="Blue" ForeColor="Red"></asp:Label> </div> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /> </form> </body> </html>
在codebehind里的Page_Load事件中改变lable的text值,this.Label1.Text = “为什么没改变”;
结果:label的值还是“为什么不显示”,为什么我在Page_Load事件中改变lable的text值没起作用呢?原因很简单:前台页面中存在 AutoEventWireup=”false”,不会自动加载Page_Load()方法
如果 AutoEventWireup=”true”,会自动加载Page_Load()事件,label的值会改变成”为什么没改变”。
还有一种方法可以使得在AutoEventWireup=”false”时,可以加载Page_Load()方法:那就是必须手动重写OnInit()方法,在里面显示的给Load事件委托Page_Load()方法,
代码如下:
protected override void OnInit(EventArgs e) { base.OnInit(e); this.Load += new System.EventHandler(this.Page_Load);//显示的利用委托注册Load事件 }
下面用到msdn上的话进行总结:
AutoEventWireup获取或设置一个值,该值指示 ASP.NET 页的事件是否自动连接到事件处理函数。当 AutoEventWireup 为 true 时,ASP.NET 不要求您将事件处理程序显式绑定到页事件,如 Load ;为false,则反之。
注意下列有关将事件绑定事件处理程序的内容:
-
如果将 AutoEventWireup 设置为 true,请确保不会同时将页事件处理程序手动附加到事件。如果这样做,则可能多次调用处理程序。
-
只为页面事件执行自动绑定,而不为页面上的控件的事件执行。
-
作为将事件绑定至句柄的另一个选择,可覆盖页面或控件的 Oneventname 方法。
msdn连接地址:http://msdn.microsoft.com/zh-cn/library/system.web.configuration.pagessection.autoeventwireup.aspx
转载于:https://www.cnblogs.com/leofly/archive/2012/09/09/2677365.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/140396.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...