QUESTIONS
Why is type="date" reformatting my date string?
(From what I have read type="date" writes string as YYYY-MM-DD but this still doen't seem to output what is expected).
How can type="date" be formatted to desired output?
(Type date is required for touchpad keyboards).
TYPE:TEXT
<asp:TextBox type="text" ID="txtDate" runat="Server" Text="13/02/2014"/>
OUTPUTS
13/02/2014
<input type="text" value="13/02/2014">
TYPE: DATE
<asp:TextBox type="date" ID="txtDate" runat="Server" Text="13/02/2014"/>
OUTPUTS
2/1/2015
<input type="text" value="2/1/2015">