我需要在我的Web应用程序中引用一个使用母版页生成的控件.
HTML中控件的名称变为类似“ctl00 $MainContent $ListBox1”.我可以在代码中安全地执行此操作吗?
string strName = "ctl00$MainContent$ListBox1"; if (Request.Form[strName] != null) { String selectedLanguage = Request.Form[strName]; }
解决方法
@H_502_9@ 你可以,但我做的是在我的Init()中设置MasterPage ID:protected void Page_Init( object sender,EventArgs e ) { // this must be done in Page_Init or the controls // will still use "ctl00_xxx",instead of "Mstr_xxx" this.ID = "Mstr"; }