我有 2 个文本框,在我的 aspx 文件中有一个日期值。我想在我的选择语句中使用后面的代码访问这两个控件,但我收到这样的错误:'必须声明标量变量“@txtStartClosingDate”所以我在后面的代码中缺少什么?谢谢
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
MainGridView.DataSource = GetData("select GroupCategory, Count(Status1) as TotalCount from [MasterProject] where Closing_Date >= @txtStartClosingDate and Closing_Date <= @txtEndClosingDate and Status1 is not null group by GroupCategory");
MainGridView.DataBind();
}
}
这是我要引用的文本框之一:
<asp:TextBox ID="txtStartClosingDate" runat="server" CssClass="datepicker"></asp:TextBox>