标签: asp.net
如何从viewstate中检索服务器控件的值?
例如,如果我们想要检索texbox服务器控件中的文本值。
答案 0 :(得分:0)
首先,你必须在viewstate中存储文本框的值
viewstate [“tboxValue”] = tbox.text;
现在假设您要在标签
lblValue.text = viewstate [“tboxValue”]。ToString();