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.
コンテンツ ページの多くは、たとえば txtCustomerName を使用して textBox コントロールを作成することを認識しています。これが見つかった場合は、セッションから値を更新する必要があります。この特定のケースでは、これらのコントロールをマスター ページに移動できません。
マスター ページからページ コントロールにアクセスする方法を教えてください。また、ページのライフサイクルのどのイベントでこれを行う必要がありますか?
任意のイベントで見つけることができます。この例では、ボタン クリック イベントを示しています。
protected void Button1_Click(object sender, EventArgs e) { TextBox TextBox1 = ContentPlaceHolder1.FindControl("TextBox1") as TextBox; if (TextBox1 != null) { Label1.Text = TextBox1.Text; } }