Showing posts with label appear. Show all posts
Showing posts with label appear. Show all posts

Saturday, March 31, 2012

Text Box Background Yellow at Runtime?

Folks,

I have a few text boxes that the backgrounds are set to white and appear white in the Visual Studio development widow. At runtime they appear as a brownish yellow.

What gives?

SethYou're viewing them on a Windows XP system.

Jeff
You might want to check this out:


Yellow textboxes

Wednesday, March 28, 2012

text control as hidden field?

hello
I would like to have text control "appear" as hidden on the page. Now the only way to make it invisible is to set its width and height to zero or set special style.
I tried to change the atribute "type" to "hidden" but then i always have both types: "text" and "hidden" even if i run Attributes.Clear() method before i render.
PS. I add the control dynamically in code , not on the design screen.

Regards
Pawel Palasz
pawel.palasz@dotnet.itags.org.echarris.comIf you're talking about the ASP.Net Textbox - - it has a Visible property - - just set it to False or True whenever you'd like, in your code.
Try this one


<asp:TextBox id="TextBox1" style="Z-INDEX: 101; LEFT: 94px; POSITION: absolute; TOP: 98px;" runat="server"></asp:TextBox>

And from the code behind simply set the "display" style of the TextBox


TextBox1.Style.Item("display") = "none"

Saturday, March 24, 2012

Text that will appear on a Hyperlink

Hi guys,

Do you know the property on a hyperlink where if the user puts his mouse on the hyperlink, a message will be displayed about that hyperlink. I mean like on this forum, you just hover your mouse pointer on the title of the thread and you will see the message inside. Something like that.

Thanks,

Willy David Jr

ToolTip


Do you mean tooltips?

set it like <a title="tooltips message here" href="http://links.10026.com/?link=http://forums.asp.net/AddPost.aspx?ReplyToPostID=1851390&Quote=False#">LINK</a>


Do you mean tooltips?

set it like <a title="tooltips message here" href="http://links.10026.com/?link=urlhere">LINK</a>


Hi onionpunk,

Thanks for that!

//Willy


For a Hyperlink Button , we have a property called ToolTip where we can give the message that we wish to appear when the mouse is hover on the Hyperlink Button Similarly , if you want to Navigate to the other page when you click the Button , just place the url in Navigate Url property