I have this control in ASP:
<input type="text" id="datepicker" name="datepicker" runat="server">
There's a JQuery function related to it
I want to get the value in the input text in my VB code, so I used this
Dim VALUE As String VALUE = Request.Form("datepicker")
But it's not working.
I am getting VALUE is nothing
What am I doing wrong?
Request.Formunless your trying to access from remote html formdatepicker.Valueinstead ofdatepicker.Text