User1929203955 posted
I have what appears to be a very simple problem. I need to increase the font-size for a textbox on a form. The following works identically in IE7, but does not work in PocketIE. The problem is that asp.net is rendering different source code to the pocketIE
browser than what I'm seeing in IE7 and I have no way of seeing what html code pocketIE is getting.
ASPX
<asp:TextBox runat="server" ID="foo" Font-Size="20px"></asp:TextBox>
<input type="text" style="font-size:20px;" />
IE7's output (If I put this code in another aspx page, everything from it renders fine on the pocketPC)
<input name="ctl00$ContentPlaceHolder1$foo" type="text" id="ctl00_ContentPlaceHolder1_foo" style="font-size:20px;" />
<input type="text" style="font-size:20px;" />
Thanks