aspxファイルに日付値を持つ2つのテキストボックスがあります。コードビハインドを使用してselectステートメントでこれらの2つのコントロールにアクセスしたいのですが、次のようなエラーが発生します。ありがとう
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();
}
}
これが私が参照しようとしているテキストボックスの1つです:
<asp:TextBox ID="txtStartClosingDate" runat="server" CssClass="datepicker"></asp:TextBox>