Mark Up:
<asp:Label ID="Status" runat="server" Visible="false" />
Code Behind:
public partial class Files : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label Status;
protected void Page_Load(object sender, EventArgs e)
{
Status.
}
}
现在,每当我尝试在 Page_Load 处理程序中使用标签Status时,我都会收到警告,因为该成员被多次定义。我的问题是为什么在将其重新定义为实例成员时没有收到警告?实际上是否可以继续进行控制?