回 帖 发 新 帖 刷新版面

主题:菜鸟请教 ASP.NET 问题!

大家好:
  我是刚自学的ASP.NET菜鸟,还望各位前辈多多指教!
请问以下代码哪里有错,为什么运行时出现如下的错误:
--------------
[color=FF0000]编译错误 
说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。 

编译器错误信息: CS1003: 语法错误,应输入“(”

源错误:

 

行 8:  <body>
行 9:  <%
行 10: using System;
行 11: using System.Data;
行 12: using System.Data.SqlClient;
 

源文件: D:\Mywebs\ASP.NET\DataCon.aspx    行: 10 [/color]
------------------------------------
ASP.NET的代码如下,请问各位哪里有错?
[color=008000]<%
using System;
using System.Data;
using System.Data.SqlClient;
String strConn="server=localhost;uid=sa;pwd=;database=northwind";
String strSelect="select * from CUSTOMERS";
SqlConnection Conn=new SqlConnection(strConn);
Conn.Open();
SqlCommand cm=new SqlCommand(strSelect,strConn);
Conn.Close();
%>[/color]

回复列表 (共2个回复)

沙发

SqlCommand cm=new SqlCommand(strSelect,strConn);

strConn 应该为 conn吧(SqlConnection Conn=new SqlConnection(strConn);

板凳

SqlCommand cm=new SqlCommand(strSelect,strConn);
这句错了
SqlCommand cm=new SqlCommand(查询语句,所用链接);
所以应该改为:SqlCommand cm=new SqlCommand(strSelect,Conn);

我来回复

您尚未登录,请登录后再回复。点此登录或注册