就像从类中我们返回一个这样的数据集..值从数据库获取并绑定在网格视图或其他任何东西。
public DataSet GetImgPath()
{
try
{
conn.Open();
cmd = new SqlCommand("SelectImg", conn);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = cmd;
DataSet ds = new DataSet();
da.Fill(ds);
conn.Close();
return ds;
}
catch
{
conn.Close();
return new DataSet();
}
}
Handler是怎么回事?就好像我想用Jquree获得所有这些价值,然后我为此做了什么。我如何从处理程序返回数据集。
答案 0 :(得分:1)
为什么需要使用Handler。您可以使用PageMethod并使用Ajax从Jquery调用它
阅读此http://encosia.com/easily-build-powerful-client-side-ajax-paging-using-jquery/