Click here to Skip to main content
15,894,896 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
Hello
I have have a gridView with some data including a date field.
and I have a dropDownList contains the distinct dates of a table, and I assigned both the ID and the value to the date field.

C#
protected void Page_Load(object sender, EventArgs e)

<pre lang="c#">{
    if (!IsPostBack)
    {
        DataAndConnManagment D = new DataAndConnManagment();
        D.FillDropDownList("Select Distinct MeetingDate from Meeting");
        DDLDates.DataSource = D.dr;
        DDLDates.DataTextField = "MeetingDate";
        DDLDates.DataValueField = "MeetingDate";
        DDLDates.DataBind();
        D.dr.Close();
    }
}


Now...

If I run the web-form without where condition, it runs without errors.
But if I added a where statment to the grid view
Meeting.MeetingDate = @Param1

...
some code
...

ASP.NET
<asp:ControlParameter ControlID="DDLDates" Name="Param1" PropertyName="Text" />


then I receive the error "Exception Details: System.Data.SqlClient.SqlException: Conversion failed when converting datetime from character string."

I'll be appreciated if any body can help me.
Posted

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900