ASP 用GridView控件连接SQL Server数据库
1 在新建的网站中添加一个Web窗体(默认窗体为default.aspx);
2 双击“对象资源管理器”中的Web.config对象,在该对象的设计代码窗口中添加如下代码,实现设置连接SQL Server数据库字符串的功能。
<connectionStrings><!--连接数据库-->
<add name="connection" connectionString="data source=.;integrated security=SSPI;initial catalog=newsfabu"></add>
</connectionStrings>
3 双击Default.aspx在设计的界面中添加一个GridView控件。
4 双击Default.aspx.cs在代码区添加如下代码。
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GridViewBind(); //调用绑定数据信息函数
}
}
public void GridViewBind()
{
this.Title = "新闻发布中心";
SqlConnection sqlcon = new SqlConnection(ConfigurationManager.
ConnectionStrings["connection"].ConnectionString);
sqlcon.Open();
SqlDataAdapter adsa = new SqlDataAdapter("select * from news", sqlcon);
DataSet ds = new DataSet();
adsa.Fill(ds);
if (ds.Tables[0].Rows.Count > 0)
{
GridView1.DataSource = ds;
GridView1.DataBind();
}
sqlcon.Close();
}
附:ASP连接数据库,并实现增删改的功能:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GridViewBind(); //调用绑定数据信息函数www.2cto.com
}
}
public void GridViewBind()
{
this.Title = "新闻发布中心";
相关新闻>>
- 发表评论
-
- 最新评论 更多>>