zoukankan      html  css  js  c++  java
  • ScriptManager ServiceReference DropDownExtender

            <asp:ScriptManager ID="ScriptManager1" runat="server">
            
    <Services>
                
    <asp:ServiceReference Path="Service.asmx" />
            
    </Services>
            
    </asp:ScriptManager>


    1<asp:Panel ID="panelS" runat="server" CssClass="dropshow" Style="display: none; visibility: hidden; border:solid 1px #B5C4CC; 384px;">
    2                                                </asp:Panel>
    3                                                <ajaxToolkit:DropDownExtender ID="ddd" runat="server" DropDownControlID="panelS"
    4                                                    TargetControlID="tbSearch">
    5                                                </ajaxToolkit:DropDownExtender>

     1    function setText() 
     2    {
     3        requestSimpleService = Service.HelloWorld(
     4
     5            document.getElementById('ctl00__tbIndex').value,       
     6            
     7            document.getElementById('ctl00_tbSearch').value,       
     8
     9            OnRequestComplete    
    10
    11            );
    12
    13        return false;
    14    }

    15
    16    function OnRequestComplete(result) 
    17
    18    {
    19        document.getElementById('ctl00_panelS').innerHTML=result;
    20        document.getElementById('ctl00_panelS').style.display="block";
    21    }

    Code
  • 相关阅读:
    Zjnu Stadium(hdu3047带权并查集)
    cocos2d-x结合cocosbuilder,不同屏幕适配小结
    分布式爬虫系统设计、实现与实战:爬取京东、苏宁易购全网手机商品数据+MySQL、HBase存储
    Generating RSA keys in PKCS#1 format in Java--转
    nodejs安装node-rsa遇到的问题及解决
    spring-redis-data的一个坑
    node-rsa加密,java解密调试
    MySQL 四种事务隔离级别详解及对比--转
    从实际案例聊聊Java应用的GC优化--转
    动态可缓存的内容管理系统(CMS)
  • 原文地址:https://www.cnblogs.com/htht66/p/1123684.html
Copyright © 2011-2022 走看看