首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

GridView疏失:用户代码未处理 SqlException

2012-12-20 
GridView出错:用户代码未处理 SqlException点击右边红色标题查看本文完整版:GridView出错:用户代码未处理

GridView出错:用户代码未处理 SqlException
点击右边红色标题查看本文完整版:GridView出错:用户代码未处理 SqlException

运行以后,在zonghe1.aspx.cs里面出错,提示:

用户代码未处理 SqlException
第1行: '> '附近有语法错误。

应该是zonghe.aspx.cs里面Button3代码里面有出错吧,但是现在还没找到!
相关代码如下:
public partial class zonghe1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string showCols = Request[ "showCols "];
string totalQuery = Request[ "totalQuery "];
Label1.Text = "查询结果 " + totalQuery;
//通过DataView控件显示符合查询条件的数据
DataSet ds=new DataSet();
SqlConnection myConnection = new SqlConnection( "server=localhost;uid=sa;pwd=860712;database=Northwind ");
string strSQL = "select " + showCols + "from [Order Details] where " + totalQuery+ " ";
SqlDataAdapter myCommand = new SqlDataAdapter(strSQL, myConnection);
myCommand.Fill(ds, "OrderDetails1 ");//问题就指示在这里
if (ds.Tables[ "OrderDetails1 "].Rows.Count != 0)
{
GridView1.DataSource = ds.Tables[ "OrderDetails1 "].DefaultView;
GridView1.DataBind();
}
else
{
Label1.Text = "没有符合查询条件的数据! ";
}
}
}

相关'第1行: '> '附近有语法错误'的代码:     

热点排行