Click here to Skip to main content
15,917,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi, I have a problem where the new asp.net textbox modes (such as date and time) do not work with IE11. I have tried it on various PCs but still it does not work. Chrome works 100%. The site has been configured to asp.net 4.5? Any suggestions?

My code:
<asp:TextBox ID="EndDate" runat="server" TextMode="Date">

The Textmode="Date" does not work when using IE 10 or 11. It works fine on Chrome.

Web.config
XML
<httpRuntime targetFramework="4.5" />

XML
<machineKey compatibilityMode="Framework45" />
   <compilation debug="true" strict="false" explicit="true" targetFramework="4.5"


XML
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="false" />
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
Posted
Updated 11-Aug-14 0:53am
v2
Comments
KaushalJB 11-Aug-14 5:48am    
Update your question with you design and code...

1 solution

These modes have nothing to do with .NET, these are new HTML5 features of the input element, most of them are not supported by IE (including 11) - http://html5test.com/compare/browser/ie-11.html[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900