When developing a simple HTM5 asp.net form I have added a placeholder attribute to a textbox:
<asp:TextBox ID="TextBox1" runat="server" placeholder="test holder"/> This renders as expected in visual studio 2013 when I run the debugger (using Internet Explorer 10). Once deployed the placeholder tag does not render using the same browser. It does render perfectly when using Google Chrome.
I am trying to figure out if I have missed something. I could understand if it did not render at all, but not in this case.
Leon Faircloth