第一次用存储过程,经人指点,

可以从从web.config里获取数据库连接字符串,纪念一下。

 

string ConnStr1 = ConfigurationManager.ConnectionStrings["connpkxt"].ConnectionString;//zhe

SqlConnection conn = new SqlConnection(ConnStr1);
SqlCommand cmd = new SqlCommand("sp_pkhead_insert", conn);
conn.Open();

 

不过还有高级一点的路径设置,还是不清楚,继续学习。。。