ajax笔记 显示出所城市名称 ShowCity.aspx Html代码
 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ShowCity.aspx.cs" Inherits="Ajax_ShowCity" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ShowCity.aspx.cs" Inherits="Ajax_ShowCity" %>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" >
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">
<head runat="server"> <title>调用数据库里的数据</title>
    <title>调用数据库里的数据</title> <script type="text/javascript">
    <script type="text/javascript"> function LoadListItems()
        function LoadListItems() {
        { StartAsyncCall(null,null);
            StartAsyncCall(null,null); }
        } function OnServerCallComplete(arg, ctx)
        function OnServerCallComplete(arg, ctx) {
        { var idsAndNames = arg.split("~");
            var idsAndNames = arg.split("~"); var ids = idsAndNames[0].split("|");
            var ids = idsAndNames[0].split("|"); var names = idsAndNames[1].split("|");
            var names = idsAndNames[1].split("|"); var htmlCode;
            var htmlCode; var ddl = document.getElementById("ddlList");
            var ddl = document.getElementById("ddlList"); for (var i=0; i < ids.length; i++)
            for (var i=0; i < ids.length; i++) {
            { htmlCode = document.createElement('option');
                htmlCode = document.createElement('option'); ddl.options.add(htmlCode);
                ddl.options.add(htmlCode); htmlCode.text = names[i];
                htmlCode.text = names[i]; htmlCode.value = ids[i];
                htmlCode.value = ids[i]; }
            } // Enable our drop down list as it
            // Enable our drop down list as it // should have some values now.
            // should have some values now. ddl.disabled = false;
            ddl.disabled = false; }
        } function OnServerCallError(err, ctx)
        function OnServerCallError(err, ctx) {
        { alert("There was an error processing the request! Error was [" + err + "]");
            alert("There was an error processing the request! Error was [" + err + "]"); }
        } function OnDropListSelectChanged()
        function OnDropListSelectChanged() {
        { var ddl = document.getElementById("ddlList");
            var ddl = document.getElementById("ddlList"); var msg = document.getElementById("msg");
            var msg = document.getElementById("msg"); msg.firstChild.nodeValue=ddl.value;
            msg.firstChild.nodeValue=ddl.value; }
        } </script>
    </script> </head>
</head> <body onload="LoadListItems();">
<body onload="LoadListItems();"> <form id="form1" runat="server" >
    <form id="form1" runat="server" >  <div>
       <div> <select id="ddlList"
            <select id="ddlList"  onchange="OnDropListSelectChanged();" disabled="disabled">
            onchange="OnDropListSelectChanged();" disabled="disabled"> <option>(加载数据...)</option>
            <option>(加载数据...)</option> </select>
            </select> </div>
          </div> <hr />
            <hr /> <div>
        <div> <label>选择的Value为: </label><span id="msg">{none}</span>
            <label>选择的Value为: </label><span id="msg">{none}</span> </div>
        </div> <div>
    <div> <asp:Label ID="lblMessage" runat="server"></asp:Label>
        <asp:Label ID="lblMessage" runat="server"></asp:Label> <asp:GridView ID="GridView1" runat="server">
        <asp:GridView ID="GridView1" runat="server"> </asp:GridView>
        </asp:GridView>     </div>
    </div> </form>
    </form> </body>
</body> </html>
</html>
 
                    
                     
                    
                 
                    
                
 
         
                
            
         
 
         浙公网安备 33010602011771号
浙公网安备 33010602011771号