Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am pulling a date using the Jquery date picker and storing it in a textbox using the following code

In the head section

<script src="Scripts/jquery.ui.datepicker.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function () {
        $("#<%= TxtDatepicker_start.ClientID %>").datepicker();
    });
    </script>
<script type="text/javascript">
    $(function () {
        $("#<%= TxtDatepicker_end.ClientID %>").datepicker();
    });
    </script>

In the body section



Start Date:

  &nbsp;&nbsp;End Date: <asp:TextBox ID="TxtDatepicker_end" runat="server" Width = 125px >
  </asp:TextBox>
  &nbsp;&nbsp;&nbsp;&nbsp;<asp:Button ID="Button_daterecords" runat="server"  Text="Show records"  OnClick ="SQLDisplay_Date_records" /><br />



Now the questions is how do I get the value in the text box and convert it to a date (YYYY-MM-DD) format in the code behind ?

I tried typecasting it but then I get this error in the code behind

cannot implicitly convert system.datetime to system.common.dbparameter

The code I am using in the code behind is

protected void SqlDataSource2_Selecting(object sender, SqlDataSourceSelectingEventArgs e)
        {
            e.Command.Parameters["@username"].Value = HttpContext.Current.User.Identity.Name;
            e.Command.Parameters["@Txt_selected_start_date"] = DateTime.Parse(TxtDatepicker_start.Text);


        }

Thanks

share|improve this question

4 Answers

up vote 1 down vote accepted

You have basically two options for this. DateTime.Parse() and DateTime.ParseExact().

The first is very forgiving in terms of syntax and will parse dates in many different formats. It is good for user input which may come in different formats.

ParseExact will allow you to specify the exact format of your date string to use for parsing. It is good to use this if your string is always in the same format. This way, you can easily detect any deviations from the expected data.

You can parse user input like this:

DateTime enteredDate = DateTime.Parse(enteredString);

If you have a specific format for the string, you should use the other method:

DateTime loadedDate = DateTime.ParseExact(loadedString, "d", null);

"d" stands for the short date pattern (see MSDN for more info) and null specifies that the current culture should be used for parsing the string.

share|improve this answer
Thanks,that helped a lot – Mervin May 25 '11 at 19:15

The problem is that your e.Command.Parameter["..."] is expecting a type other than DateTime. String usually works so try

DateTime.Parse(txtDatepicker_end.Text).ToString("YYYY-MM-dd");

the ToString() method for DateTime will allow you to apply any format you wish to your date.

You also forgot:

e.Command.Parameter["..."]

should be

e.Command.Parameter["..."].Value
share|improve this answer
DateTime.Parse(TxtDatepicker_end.Text);
share|improve this answer
Thanks Ken ,but I am getting this error "cannot implicitly convert system.datetime to system.common.dbparameter" when ever I try mapping it to an input variable for a sql query – Mervin May 25 '11 at 17:58

You need to assign the result to the .Value property of the DbParameter:

e.Command.Parameters["@Txt_selected_start_date"].Value = DateTime.Parse(TxtDatepicker_start.Text);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.