在asp.net应用程序下找到web.config文件,在<system.web>前面加入下面的代码:
<?xml version=”1.0″ encoding=”utf-8″?>
<configuration>
<appsettings>
<add key=”connectionstring” value=”server=jeff;uid=sa;pwd=btk;database=msg” />
</appsettings>
<system.web>
……
</system.web>
</configuration>
在aspx文件里面建立连接:
public sqldatareader getreviews(int productid) {
// 创建connection和command对象实例
sqlconnection myconnection = new sqlconnection(system.configuration.configurationsettings.appsettings[“connectionstring”]);
sqlcommand mycommand = new sqlcommand(“reviewslist”, myconnection);
mycommand.commandtype = commandtype.storedprocedure;
// 参数
sqlparameter parameterproductid = new sqlparameter(“@productid”, sqldbtype.int, 4);
parameterproductid.value = productid;
mycommand.parameters.add(parameterproductid);
// 执行
myconnection.open();
sqldatareader result = mycommand.executereader(commandbehavior.closeconnection);
// 返回结果
return result;
}