QI希望显示来自SQl Server的查询记录,这些记录位于包含自定义列标题的表中。我该怎么办?
我的查询功能如下
private DataTable GetRecords(int QID, DateTime FromDate, DateTime ToDate)
{
SqlConnection myConn = new SqlConnection(ConfigurationManager.ConnectionStrings["CONNSTRING"].ConnectionString);
// Create the command and set its properties.
SqlCommand command = new SqlCommand();
command.Connection = myConn;
command.CommandText = "sp_GetRecords";
command.CommandType = CommandType.StoredProcedure;
// Add the input parameter and set its properties.
SqlParameter parameter1 = new SqlParameter();
parameter1.ParameterName = "@QID";
parameter1.SqlDbType = SqlDbType.Int;
parameter1.Direction = ParameterDirection.Input;
parameter1.Value = QID;
SqlParameter parameter2 = new SqlParameter();
parameter2.ParameterName = "@FromDate";
parameter2.SqlDbType = SqlDbType.DateTime;
parameter2.Direction = ParameterDirection.Input;
parameter2.Value = FromDate;
SqlParameter parameter3 = new SqlParameter();
parameter3.ParameterName = "@ToDate";
parameter3.SqlDbType = SqlDbType.DateTime;
parameter3.Direction = ParameterDirection.Input;
parameter3.Value = ToDate;
// Add the parameter to the Parameters collection.
command.Parameters.Add(parameter1);
command.Parameters.Add(parameter2);
command.Parameters.Add(parameter3);
myConn.Open();
SqlDataReader GetAgentTransactions = command.ExecuteReader();
DataTable dt = new DataTable();
dt.Load(GetAgentTransactions);
GetAgentTransactions.Close();
myConn.Close();
return dt;
}
要在datagridview中绑定和显示,我在显示按钮点击事件上有以下内容。
protected void btnShow_Click(object sender, EventArgs e)
{
DataTable table = new DataTable();
table = GetRecords(1, Convert.ToDateTime(txtFromDate.Text.Trim()), Convert.ToDateTime(txtToDate.Text.Trim()));
datagridview.DataSource = table;
datagridview.DataBind();
}
}
我希望返回的记录在列标题下显示为S1。不,姓名和注册。数。我该怎么做 ?请帮助一个代码示例。
答案 0 :(得分:2)
我猜你无法改变SQL查询以获得你想要的列名。所以让我们修改DataGridView。
如果您看到DataTable中的列名称在DataGridView中作为列,那是因为它会自动生成它们。
如果您想在列中添加自己的标题文本,则必须自己指定。
首先你需要关闭列自动生成。对于DataGridView中的AutoGenerateColumns
到false
集合。
然后,您必须手动添加列,并在每列中指定DataField
值等于SQL Server中的实际列名称,HeaderText
等于列所需的显示名称。
现在,当您绑定DataTable
时,它会根据DataGridView
和DataField
值为HeaderText
生成匹配列的列。
在此处查看示例以获取示例标记:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.columns.aspx
编辑:
这是一个示例GridView标记,用于显示如何手动设置列。
AutoGenerateColumns
设置为false
DataField
应该是数据库中的字段名称。 HeaderText
应该是您的文字。
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False">
<Columns>
<asp:BoundField DataField="Id" HeaderText="Id" />
<asp:BoundField DataField="FirstName" HeaderText="First Name" />
<asp:BoundField DataField="LastName" HeaderText="Last Name" />
<asp:BoundField DataField="DOB" HeaderText="Date Of Birth" />
</Columns>
</asp:GridView>
答案 1 :(得分:0)
您必须在Windows窗体上添加它:
1. dgr_donors.AutoGenerateColumns = false;
2. dgr_donors.Columns.Add("id", "id");
3. dgr_donors.Columns.Add("BCode", "BarCode");