本文介绍了数据网格视图..使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用数据网格视图查看表格.....请告诉我

how to view the table using data grid view..... pls tell me

推荐答案

<asp:gridview id="GridView1" runat="server" xmlns:asp="#unknown">
            </asp:gridview>



代码背后的代码



Code behind code

    protected void Page_Load(object sender, EventArgs e)
    {

SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Connection String name as in web Config file"].ConnectionString);
        if (!Page.IsPostBack)
        {
            con.Open();
            SqlCommand cmd = new SqlCommand("Your sql query here", con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);
            GridView1.DataSource = ds;
            GridView1.DataBind();
            con.Close();
        }
    }




这篇关于数据网格视图..使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 20:54