我想将标签中的数据绑定DataListControl
到 SQL 数据源并像GridView
在其他页面中一样查看它。
我不知道如何从标签中获取数据并将其放入数据库...
我试图对此进行编码,但我需要的是GetData
从标签到变量的方法。
我创造了:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Configuration;
using System.Data;
public partial class Products : System.Web.UI.Page
{
// string Name = Label.Equals(Namelable) // What should I do here to Get data from Lable?!
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString);
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnOrder_Click(object sender, EventArgs e)
{
con.Open();
SqlCommand cmd = new SqlCommand("sp_Order", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@Name", Name);
}
}
任何想法该怎么做?