我有下面的代码,并试图访问 lnkSave_Click 函数中的“文本”字符串,但文本似乎无法从 lnkSave_Click 函数访问,它似乎总是空的。
private string _text = "";
public string text
{
get { return _text; }
set { _text = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
text = "Hello World!";
}
}
protected void lnkSave_Click(object sender, EventArgs e)
{
if (text == "Hello World!")
{
... do things..
}
}