触摸屏租赁
Touch screen rental
广告机租赁
Advertising rental
机器人租赁
Robot leasing
 当前位置:首页 > > 读取数据到GridView

.................
using System.Data.SqlClient;

public partial class product_product : System.Web.UI.Page
{
   protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            BindData();
        }

    } 

   public void BindData()
    {
            Conn conn = new Conn();
            SqlConnection con = conn.getConn();
            SqlDataAdapter sda = new SqlDataAdapter("select * from product", con);
            DataSet ds = new DataSet();
            sda.Fill(ds);     //填充数据集
            GridView1.DataSource = ds;
            GridView1.DataBind();
            conn.Close();
    }

................
}


工作室地址:重庆石桥铺电脑城B座 | 微信:z35544216 | 网址:www.35544216.com