在加载页面时,我需要在标签框中显示列的最大值(在表格中)

时间:2015-06-02 13:39:22

标签: c# asp.net

使用c sharp在asp dot net中加载页面时,我需要在标签框中显示列的最大值(在表格中)

从master中选择max(refno + 1)。我是asp pls中的新手,帮助

1 个答案:

答案 0 :(得分:0)

如果我说得对,你的代码

SqlDatareader cmd =new SqlDatareader("select max(refno+1) from master"con);
DataSet ds=new DataSet();
cmd.fill(ds);
label.text=ds;

最后一行应该是

 label.text=ds.Tables[0].Columns.Count;