我不明白。我在我的 aspx 中添加了一个 asp:Label。页:
<asp:Label runat="server" Text="" ID="lblStatus"></asp:Label>
然后当我尝试在后面的代码中设置文本时:
lblStatus.Text = " test";
,它给了我这个错误:
An object reference is required for the non-static field, method, or property 'Utilities_MoveFileTemplate.lblStatus'
我试图在存储过程运行后在代码隐藏中设置标签的文本:
try
{
conn.Open();
cmd.ExecuteNonQuery();
lblStatus.Text = "success";
}
删除了“静态”关键字并且它起作用了