(2)HandlerDropDownAjax.ashx
public class HandlerDropDownAjax : IHttpHandler {
public void ProcessRequest (HttpContext context) {
if (context.Request.QueryString["type"] != null && context.Request.QueryString["fid"] != null)
{
string type = context.Request.QueryString["type"].ToString(); //主要用于识别是查询city还是area表
string fid = context.Request.QueryString["fid"].ToString(); //城市或区域的父ID
string sql = "select * from " + type + " where father='" + fid + "'";
//构造数据的类型[{"text":"南昌","value":"0001"},{"text":"上饶","value":"0002"}]
//string strTemp = "{"text":"{0}","value":"{1}"}";//这里犯了个错误:直接这样构造会出错,因为大括号里又有格式大括号,解析会出错
string strTemp = ""text":"{0}","value":"{1}""; //构造格式字符串 {"text":"北京","value":"00001"}
StringBuilder sb = new StringBuilder();
OleDbDataReader reader = OleDBHelper.ExecuteReader(sql);
while (reader.Read())
{
string str1 = string.Format(strTemp, reader[2].ToString(), reader[1].ToString());
sb.Append("{" + str1 + "},"); //两边的大括号格式化后加上
}
reader.Close();
string json = sb.ToString();
context.Response.Write("[" + json.Substring(0, json.Length - 1) + "]"); //Substring的作用是去掉最后一个'逗号'
}
}
public bool IsReusable {
get {
return false;
}
}
}
更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net优化技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。








