如何获得用户组件中的下拉框的值
把一个 省市的二级联动菜单做成了用户组件在调用的页面如何获得当前选择的值 --------------------编程问答-------------------- string valueYouWanted=dropDownList.SelectedValue.ToString(); --------------------编程问答-------------------- 我说的是调用的页面, 在用户控件的 cs 页面当然可以 dropDownList.SelectedValue.ToString(); 来获得.
但在在调用页面 dropDownList 根本就不认.... --------------------编程问答-------------------- string script = string.Format("<script>function getSelect(){ return document.getElementById('{0}');}</script>", dropDownList.ClientID);
Page.RegisterClientScriptBlock("funcs", script);
把这段脚本加到Page_Load里
在页面上可以调用getSelect()来获得这个下拉列表的控件实例 --------------------编程问答-------------------- --------------------编程问答-------------------- Click the link to solve your problem.Good luck!
补充:.NET技术 , ASP.NET