为什么 Label 控件的文本属性未在 Page_Load 事件处理程序中设置
本文关键字:Load 事件处理 程序 设置 Page 控件 Label 文本 属性 为什么 | 更新日期: 2024-11-07 02:26:37
标记:
<%@ Page Language="C#" AutoEventWireup="false" CodeBehind="Files.aspx.cs" Inherits="WebModules.Web.Files" %>
<!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">
</head>
<body>
<form id="form1" method="post" runat="server">
<asp:Label ID="Status" runat="server" />
</form>
</body>
</html>
代码隐藏:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
namespace WebModules.Web
{
public partial class Files : System.Web.UI.Page
{
private void Page_Load(object sender, EventArgs e)
{
Status.Text="Hello";
}
private void Page_Init(object sender, EventArgs e)
{
InitializeComponent();
}
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
}
}
当我在浏览器中运行页面时,标签上没有显示文本"Hello"。
有谁知道为什么这不起作用?
您可能想尝试将方法上的访问修饰符从私有更改为受保护:
//I'm assuming that Files is the class of your page, and not just another class. Make sure that your markup inherits from this class
public partial class Files : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Status.Text="Hello";
}
}
我将粘贴的标签和页面加载代码复制到我当前的应用程序中,它显示正常。
这样做:
受保护的无效Page_Load(对象发送器,事件参数 e)
{
Status.Text="Hello";
}
然后将 labe ID 放在源代码中:
<asp:Label ID="Status" runat="server" />
我已经修复了它!我刚刚将属性AutoEventWireup="false"
更改为AutoEventWireup="true"
。现在工作正常