zoukankan
html css js c++ java
ajax笔记 显示出所城市名称 ShowCity.aspx Html代码
<%
...
@ 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"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
runat
="server"
>
<
title
>
调用数据库里的数据
</
title
>
<
script
type
="text/javascript"
>
...
function
LoadListItems()
...
{
StartAsyncCall(
null
,
null
);
}
function
OnServerCallComplete(arg, ctx)
...
{
var
idsAndNames
=
arg.split(
"
~
"
);
var
ids
=
idsAndNames[
0
].split(
"
|
"
);
var
names
=
idsAndNames[
1
].split(
"
|
"
);
var
htmlCode;
var
ddl
=
document.getElementById(
"
ddlList
"
);
for
(
var
i
=
0
; i
<
ids.length; i
++
)
...
{
htmlCode
=
document.createElement(
'
option
'
);
ddl.options.add(htmlCode);
htmlCode.text
=
names[i];
htmlCode.value
=
ids[i];
}
//
Enable our drop down list as it
//
should have some values now.
ddl.disabled
=
false
;
}
function
OnServerCallError(err, ctx)
...
{
alert(
"
There was an error processing the request! Error was [
"
+
err
+
"
]
"
);
}
function
OnDropListSelectChanged()
...
{
var
ddl
=
document.getElementById(
"
ddlList
"
);
var
msg
=
document.getElementById(
"
msg
"
);
msg.firstChild.nodeValue
=
ddl.value;
}
</
script
>
</
head
>
<
body
onload
="LoadListItems();"
>
<
form
id
="form1"
runat
="server"
>
<
div
>
<
select
id
="ddlList"
onchange
="OnDropListSelectChanged();"
disabled
="disabled"
>
<
option
>
(加载数据...)
</
option
>
</
select
>
</
div
>
<
hr
/>
<
div
>
<
label
>
选择的Value为:
</
label
><
span
id
="msg"
>
{none}
</
span
>
</
div
>
<
div
>
<
asp:Label
ID
="lblMessage"
runat
="server"
></
asp:Label
>
<
asp:GridView
ID
="GridView1"
runat
="server"
>
</
asp:GridView
>
</
div
>
</
form
>
</
body
>
</
html
>
查看全文
相关阅读:
Centos 7.3 配置Xmanager XDMCP
xstart使用方法
Linux下安装xwindow图形界面
使用Xftp连接Centos 6.6服务器详细图文教程
linux远程管理器
xftp的使用教程
CentOS 7 关闭图形界面
Java反射机制
java反射的性能问题
Java 虚拟机面试题全面解析(干货)
原文地址:https://www.cnblogs.com/xiaotuni/p/2365812.html
最新文章
Android多媒体-MediaPlayer唤醒锁及音频焦点
LeetCode_Mysql_Second Highest Salary
SSH-struts2的异常处理
让百度删除不想收录的域名或快照的最快方法
Maven手工安装jar包到本地仓库
Objective-C语言的 if ( self = [super init] )
复制class文件到as中出现非法字符,须要class,interface货enum
SQL查询中用到的函数
URL中“#” “?” &“”号的作用
URL的组成和含义
热门文章
接口测试全流程扫盲
思维模式
详谈软件测试体系框架的理解
Python +selenium自动化环境的搭建
GET和POST两种基本请求方法的区别
Get,Post请求方式经典详解
浅谈测试发展的未来--全栈式测试工程师
CentOS卸载原有旧版OPENJDK并安装SUNJDK解决方案
夜雨惊风 Linux下卸载openjdk,安装jdk
Ceontos6.X配置XDMCP远程调用图形化
Copyright © 2011-2022 走看看