lable绑定数据库字段出异常
代码如下:
DataSet ds=new DataSet();
int id=Convert.ToInt32(Request.Form["a23"]);
SqlDataAdapter Adapter=new SqlDataAdapter("select * from dpst where id="+id,con);
Adapter.Fill(dpst,"dpst");
this.Label11.Text=ds.Tables["dpst"].Rows[0].ItemArray[8].ToString()
this.DataBind();
我是将数据表字段绑定到lable,怎么样提示
Exception Details: System.IndexOutOfRangeException: There is no row at position 0.
红色的那一句有错吗?是这样绑定的吧?
补充:在sql语句中不加where可以。
我现在是想用上个页面带过来的参数做条件.谁能给点提示.感谢