Multi-line text box too small for Mozilla

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone else have a problem with the Mozilla browser not expanding a
multi-line textbox to its proper size? My textboxes are all small and do not
display mu;tiple lines in Mozilla or Netscape but are ok in Internet
Explorer. Is there a reason for this and can it be fixed?
Dave Uphoff
 
Hy,

Try to put this in thw WEB.CONFIG file.



<browserCaps>

<!--NETSCAPE 6 and 7 //-->

<case match="^Mozilla/5\.0 \([^)]*\)
(Gecko/[-\d]+ )?Netscape[6|7]/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'lett
ers'\w*)).*">

tagwriter=System.Web.UI.HtmlTextWriter

browser=Netscape

version=${version}

majorversion=${major}

minorversion=${minor}

frames=true

tables=true

cookies=true

javascript=true

javaapplets=true

ecmascriptversion=1.5

w3cdomversion=1.0

css1=true

css2=true

xml=true

</case>

<!-- MOZILLA //-->

<case
match="^Mozilla/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*)).*">

<case match="^[5-9]\." with="${version}">

tagwriter=System.Web.UI.HtmlTextWriter

</case>

</case>

<!--OPERA 5+//-->

<case match="Opera[
/](?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*))">

<filter match="[4-9]" with="${major}">

<filter match="[5-9]" with="${major}">

tagwriter=System.Web.UI.HtmlTextWriter

</filter>

</filter>

</case>

</browserCaps>

Does anyone else have a problem with the Mozilla browser not expanding a
multi-line textbox to its proper size? My textboxes are all small and do not

display mu;tiple lines in Mozilla or Netscape but are ok in Internet
Explorer. Is there a reason for this and can it be fixed?
 
Parrot said:
Does anyone else have a problem with the Mozilla browser not expanding a
multi-line textbox to its proper size? My textboxes are all small and do not
display mu;tiple lines in Mozilla or Netscape but are ok in Internet
Explorer. Is there a reason for this and can it be fixed?
Dave Uphoff

I make textarea's like this on websites and they work just fine in
mozilla/firefox

<textarea name="Comments" cols="52" rows="4" size="50"></textarea>

I'm guessing you're using
<INPUT TYPE=TEXT ...>
That doesn't work multiline.

HTH
 
C-Services Holland b.v. said:
I make textarea's like this on websites and they work just fine in
mozilla/firefox

<textarea name="Comments" cols="52" rows="4" size="50">
 
Back
Top