【ASP.NET(C#)】マスタページの値を設定、取得する方法
バージョン:ASP.NET 3.5
・値をセットする場合
(Page.Master.FindControl(“TextBox1″) as TextBox).Text = “あいうえお”;
・値を取得する場合
String test = (Page.Master.FindControl(“TextBox1″) as TextBox).Text;
・入れ子になったマスターページの場合
(Master.Master.FindControl(“ContentPlaceHolder1″) .FindControl(“TextBox1″) as TextBox).Text = “なんとか”; ((TextBox)Master.Master.FindControl(“ContentPlaceHolder1″) .FindControl(“TextBox1″) ).Text = “なんとか”;