这是否要用到脚本?如果用脚本的话,可以对服务器控件进行控件吗?有人知道的话,请指点一下,非常感谢.

解决方案 »

  1.   

    document.getElementById(DropDownList).options[document.getElementById(DropDownList).selectedIndex].value;
      

  2.   

    前台
    写脚本
    后台
    用Request.Form["DropDownList"]就可获得
      

  3.   

    var sel=document.form1.sel_location;
    var LocationCode=sel.options[sel.selectedIndex].value;
      

  4.   


    我不太懂的你的意思,
    如果你不刷新要去取服务端的数据,必须要运用AJAX这类的技术。
    如果只是要取客户端中DropDownList中的值,楼上的方法就好了