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.netC#に読み込まれたときにフォームを非表示にするにはどうすればよいですか?ボタン(表示)で表示されます。どうやってするの?
あまり明確ではありませんが、デフォルトのページ読み込み機能を使用できます
protected void Page_Load(object sender, EventArgs e) { yourForm.visible = false; } private void your_btn_event(object sender, EventArgs e) { yourForm.visible = true; }