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
  • 相关阅读:
    多组件共享-vuex
    在子组件中触发事件,传值给父组件-vue
    在父组件中,直接获取子组件数据-vue
    非父子组件通过事件传值-vue
    在父组件中,传值给子组件-vue
    MVVM
    Virtual DOM-渲染函数render -vue
    duilib入门简明教程 -- VS环境配置(2) (转)
    duilib入门简明教程 -- 前言(1) (转)
    【CDockablePane】关于CDockablePane
  • 原文地址:https://www.cnblogs.com/htht66/p/1123684.html
Copyright © 2011-2022 走看看