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.
当页面在asp.net C#中加载时如何使表单不可见?在按钮(显示)它应该是可见的。怎么做?
不是很清楚但是可以使用默认的页面加载功能
protected void Page_Load(object sender, EventArgs e) { yourForm.visible = false; } private void your_btn_event(object sender, EventArgs e) { yourForm.visible = true; }