Transparent Textbox Visible in Safari

P

ProgrammerChicago

I've got a textbox that is used to convey the browser type to the next
page, and it is invisible in every other browser, but on Safari for
the Mac it draws a boundary around it. I've tried visible='false' but
then I can't put text in it. Does anyone know know I can get this to
not appear in Safari?

<asp:TextBox ID="tBrowser" runat="server" BackColor="Transparent"
BorderColor="Transparent" BorderStyle="None" ForeColor="White"
Width="6px" />
 
R

Rad [Visual C# MVP]

I've got a textbox that is used to convey the browser type to the next
page, and it is invisible in every other browser, but on Safari for
the Mac it draws a boundary around it. I've tried visible='false' but
then I can't put text in it. Does anyone know know I can get this to
not appear in Safari?

<asp:TextBox ID="tBrowser" runat="server" BackColor="Transparent"
BorderColor="Transparent" BorderStyle="None" ForeColor="White"
Width="6px" />

As an aside ... wouldn't it be better to get the browser using the
Request.Browser object? This would eliminate your problem because you
won't need the textbox any more
 
B

bruce barker

you should use a hidden field rather than a textbox, it was designed for
this. set visible=false causes asp.net to not render the control. if you
insist on a textbox you can place it offscreen or using css set its
display:none.

-- bruce (sqlwork.com)
 
P

ProgrammerChicago

you should use a hidden field rather than a textbox, it was designed for
this. set visible=false causes asp.net to not render the control. if you
insist on a textbox you can place it offscreen or using css set its
display:none.

-- bruce (sqlwork.com)

Okay, thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,169
Latest member
ArturoOlne
Top