C#,如何获取动态生成的服务器控件在客服端的ID。
补充:var mytestdp = new DropDownList
{
ID = "mytestdp1",
CssClass = "ccc"
};
//添加为其添加javascript函数
//其他地方都没问题,就是下面获取不到客服端的ID。若是先在客服端运行,找到其ID,填入下面,则可。但很明显这样是不行的。
string strjs = "<script type=\"text/javascript\" language=\"javascript\"> function getCounty() {var d = document.getElementById(\"此处如何获取mytestdp1在客服端的ID\"); var typeValue = d.options[d.selectedIndex].value;alert(typeValue);} </script>";
Response.Write(strjs);
mytestdp.Attributes.Add("onchange", "getCounty()");
this.paneldetail.Controls.Add(mytestdp);
}