internet explorer - ASP.NET TextBox TextMode set to Date not working in IE 11 -
<asp:textbox id="txtdate" runat="server" textmode="date" /> it works in chrome, not in firefox or ie 11. googling around isn't yielding lot of helpful answers. far know, ie 11 html5 compliant.
the textmode property corresponds <input type="" /> attribute (excepting multiline renders <textarea />). asp.net 4.x introduced additional values corresponding new html5 input types.
internet explorer 11 not support of these new input types, not support "date", "datetime", nor "time" values. http://caniuse.com/#feat=input-datetime chrome, opera, , mobile safari do.
Comments
Post a Comment