I'm currently creating a web page in ASP.NET and would like to use Jason's Input Calendar as well. I hope someone can help me with a problem that I am facing.
I have a form where I can add new customers. Most of the fields have the following tags within the DetailsView:-
As for the Birth Date field, I had converted it to TemplateField. The following is the code:-
How do i get the value of "BirthDate" into TextBox1? I'm coding in VB.
Thank you
I have a form where I can add new customers. Most of the fields have the following tags within the DetailsView:-
Code:
<asp:BoundField DataField="First Name" HeaderText="FirstName"></asp>
Code:
<asp:TemplateField ... >
<InsertItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text="" Visible="false"></asp:TextBox>
<script type="text/javascript">DateInput("BirthDate",true,"YYYYMMDD")</script>
</InsertItemField>
Thank you
Comment