I have a textbox of read only type with jquery datepicker so when the page post backs then that textbox value gets cleared. I do not want the textbox value to get clear but at the same time i need postback the page also..
You will have to reset in Page_Load
protected void Page_Load(object sender, EventArgs e) { string dt = Request.Form[txtDate.UniqueID]; }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.