I am trying to implement checkbox to filter result, on checked, the data shown must be older than 10 years old, if unchecked, the displayed data is newer than 10 years.
I have the following code which displays checkbox
<asp:CheckBox ID="CheckBox1" runat="server" Text="Show old model" onload="CheckBox1_Load" />
....
protected void CheckBox1_Load(object sender, EventArgs e)
{
CheckBox1.InputAttributes["value"] = "<";
}
This is the sqlDataSource
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
....
WHERE a.makeyear @yearMake DATEADD(year, -10, GETDATE()))">
<SelectParameters>
<asp:ControlParameter ControlID="CheckBox1" DefaultValue=">" Name="yearMake" PropertyName="Checked" Type="String" />
</SelectParameters>
However, on running, i receive error
Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near '@yearMake'.
Is this correct way of doing it? I am very new to asp.net, please assist me
>like>. – Uwe Keim Nov 22 '12 at 14:33