当前位置: 代码迷 >> ASP.NET >> 用户控件和AjaxPro的有关问题(文本框内容和下拉框联动,比较急)
  详细解决方案

用户控件和AjaxPro的有关问题(文本框内容和下拉框联动,比较急)

热度:100   发布时间:2013-02-26 00:00:00.0
用户控件和AjaxPro的问题(文本框内容和下拉框联动,比较急)
我实现一个功能~即文本框内容改变~下拉框的内容也随着改变~原来在页面下的代码我会写~就是类似于:
    <script       type= "text/javascript ">      
    function       Linkman()      
    {        
          FrontPage_Activity_EditActivity.GetLinkman(document.all.TextBoxCustomer.value,callback);
          debugger;
    }      
    function   callback(res)
    {
        if(res.value   !=   null)
        {
 
                                document.all( "DropDownList6 ").options.add(new   Option( " "));
                                for(var   i=1;   i <tbl.Rows.length;   i++)
                                {
                                          var   name=tbl.Rows[i].Column0;
                                          var   id=tbl.Rows[i].Column1;
                                          debugger;
                                          document.all( "DropDownList6 ").options.add(new   Option(name,id));

        }
        return;
    }
                    </script>


现在换成用户控件~要实现同样的功能~我就傻了~这段代码怎么写也写不对~希望高人给个指点~~我js不怎么会~写的脑袋都疼了~~
这个问题应该不难~大家给个帮助咯~Thx


------解决方案--------------------------------------------------------
帮顶
------解决方案--------------------------------------------------------
document.all( "DropDownList6 ").options.add(new Option( " "));
> >
document.all( " <%=DropDownList6.ClientID%> ").options.add(new Option( " "));


------解决方案--------------------------------------------------------
下载来看看!
http://www.mytopwin.com/无刷新自动完成.rar
  相关解决方案