Ajax动态加载数据库示例

Ajax动态加载数据库示例

这篇文章主要介绍的是一个Ajax动态加载数据库示例,需要的朋友可以参考下

复制代码 代码如下:











产品名称:



价格:







复制代码 代码如下:

< WebHandler Language="C#" Class="GetPrice"

using System;
using System.Linq;
using System.Web;
using DataSetProductsTableAdapters;

public class GetPrice : IHttpHandler {

public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/plain";
//context.Response.Write("Hello World");
string name = context.Request["text1"];
var data = new PriceTableAdapter().GetDataByName(name);//需要建一个强类型的dataset
if (data.Count <= 0)
{
context.Response.Write("none|0");
}
else
{
context.Response.Write("ok|" + data.Single().Price);
}
}

public bool IsReusable {
get {
return false;
}
}

}

以上就是Ajax动态加载数据库示例的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读