首页 相关文章 Ajax获取数据库中的字段

Ajax获取数据库中的字段

cs 返回数据库中的某个字段,你可以构造自己的字符
[Ajax.AjaxMethod()]
public static string getDataSet()
{
SqlDataBase SqlDB=new SqlDataBase(DSN);
string strsql=String.Format(" Select * From User Where IsPower=0","User");
DataSet ds=SqlDB.CreateSet(strsql,"IU_User");
SqlDB.CloseConnection();
return ds.Tables[0].Rows[0][0].ToString();
}

client side
function getDataSet(){
WebForm1.getDataSet(GetDataSet_callback);
}
function GetDataSet_callback(response)
{
var ds = respon...[ 查看全文 ]

2016-02-19 标签:

Ajax获取数据库中的字段的相关文章

手机页面
收藏网站 回到头部