Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的意思是说当我从文本框中传递一个值并点击提交按钮时..提交值在文本框中仍然可见之后,为什么我们需要自己清空文本框,为什么它没有消失?
因为PostBacks和ViewState。
Webforms 试图模仿桌面 WinForms 应用程序的工作方式和处理事件的方式。因此,您的页面在访问服务器和返回时会记住其控件的状态。
如果您需要更改或重置值,只需在代码隐藏中的事件处理程序上手动更改它。