I am working with asp.net controls(textboxes), but only for the calendar control I am using jquery code(because it has a good UI) that has html <input type="text" id="datepicker">
Now, I want to insert the value of this input field into the database.
With asp.net controls,it is easily possible using cmd.Parameters.AddWithValue("@MemberId", txtMemberId.Text);
But I am stuck with the html input control, Please help me out. Thank you.