When my web application is invoked by Firefox the height and width
information is passed to Internet Explorer but not to Firefox.
The ASP.NET control is
<asp:textbox id="tbxNote" runat="server" Width="100%" Height="226px"
TextMode="MultiLine">
For IE it renders
<textarea name="tbxNote" id="tbxNote" style="height:226px;width:100%;">
For Firefix it renders
<textarea name="tbxNote" id="tbxNote"
Is there something I can do to induce ASP.NET to pass the style information
to Firefox?
I will be very grateful for your help.Hi,
you need just tweak browser detection within config files so that FireFox is
recognized better.
http://weblogs.mozillazine.org/gerv...ves/008336.html
--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke
set rows and columns for w3c compliance
"honcho" <goaway@.nospam.com> wrote in message
news:1121195322.46481282447c7dd42a8bb382e8a6d776@.b ubbanews...
> Hello:
> When my web application is invoked by Firefox the height and width
> information is passed to Internet Explorer but not to Firefox.
> The ASP.NET control is
> <asp:textbox id="tbxNote" runat="server" Width="100%" Height="226px"
> TextMode="MultiLine">
> For IE it renders
> <textarea name="tbxNote" id="tbxNote" style="height:226px;width:100%;">
> For Firefix it renders
> <textarea name="tbxNote" id="tbxNote">
> Is there something I can do to induce ASP.NET to pass the style
> information to Firefox?
> I will be very grateful for your help.
That was a very useful suggestion. Thank you.
"TJS" <nospam@.here.com> wrote in message
news:ee$JcDyhFHA.1968@.TK2MSFTNGP14.phx.gbl...
> set rows and columns for w3c compliance
>
> "honcho" <goaway@.nospam.com> wrote in message
> news:1121195322.46481282447c7dd42a8bb382e8a6d776@.b ubbanews...
>> Hello:
>>
>> When my web application is invoked by Firefox the height and width
>> information is passed to Internet Explorer but not to Firefox.
>>
>> The ASP.NET control is
>> <asp:textbox id="tbxNote" runat="server" Width="100%" Height="226px"
>> TextMode="MultiLine">
>> For IE it renders
>> <textarea name="tbxNote" id="tbxNote" style="height:226px;width:100%;">
>> For Firefix it renders
>> <textarea name="tbxNote" id="tbxNote">
>>
>> Is there something I can do to induce ASP.NET to pass the style
>> information to Firefox?
>>
>> I will be very grateful for your help.
>>
0 comments:
Post a Comment