常量中有换行符?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常量中有换行符?相关的知识,希望对你有一定的参考价值。
private void bind()
SqlConnection sqlcon = new SqlConnection();
SqlDataAdapter sda;
DataSet ds = new DataSet();
string sqlconstr = "Data Source=.;Initial Catalog=Northwind;Integrated Security=True";
sqlcon.ConnectionString = sqlconstr;
string strsql = "SELECT [ProductID], [ProductName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder] FROM [Products]
WHERE [Product] < 6";
using (sda = new SqlDataAdapter(strsql sqlcon))
try
sda.Fill(ds,"Product");
Session["ds"] = ds;
catch(SystemException ex)
Response.Write(ex.Message.ToString());
GridView1.DataSource = ds.Tables["Product"].DefaultView;
GridView1.DataBind();
中
string strsql = "SELECT [ProductID], [ProductName], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder] FROM [Products]
WHERE [Product] < 6";
提示常量中有换行符,书上的例子,为什么调试不了
WHERE [Product] < 6";
你把这个写成一行试试。 参考技术A FROM [Products] WHERE [Product] < 6";
拷贝我这句,这样试试,记得是拷贝我的
以上是关于常量中有换行符?的主要内容,如果未能解决你的问题,请参考以下文章