Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
i need it for my page., i tried a lot., but all are not good in look.,
water mark css for textbox.
Posted
Comments
member60 11-May-12 6:03am    
try to elaborate your question more , whether you want only css, or watermark functionality too ?
if you impolemented watermark then how? i mean by using jquery or something else .

Have a look at this article by Vivek_Sharma[^] JavaScript watermark in place of Ajax watermark in ASP.NET with C#[^]. That should be what you are looking for.

Regards,

Manfred
 
Share this answer
 
.WaterMarkedTextBox
        {
            height: 16px;
            width: 168px;
            padding: 2px 2 2 2px;
            border: 1px solid #BEBEBE;
            background-color: #F0F8FF;
            color: gray;
            font-size: 8pt;
            text-align: center;
        }



XML
<asp:TextBox ID="txtUserId" runat="server"
        onfocus="Focus(this.id,'User ID')"
                    onblur="Blur(this.id,'User ID')"
            Width="126px" CssClass="WaterMarkedTextBox"></asp:TextBox>
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900