Click here to Skip to main content
15,895,667 members
Articles / Web Development / ASP.NET
Alternative
Tip/Trick

onfocus , onblur :: input box / textbox

Rate me:
Please Sign up or sign in to vote.
4.67/5 (2 votes)
11 Apr 2011CPOL 13.3K  
for asp.net<asp:TextBox ID="txtUserName" Text ='Enter User Name' onFocus="if (this.value == 'Enter User Name' || this.value == 'User Name Not found' || this.value == 'Password Not found' || ...
for asp.net

<asp:TextBox ID="txtUserName" 
             Text ='Enter User Name'  
             onFocus="if (this.value == 'Enter User Name'     || 
                          this.value == 'User Name Not found' || 
                          this.value == 'Password Not found'  || 
                          this.value == 'User Name and Password Mismatch')
                      {
                          this.value           = '';
                          this.style.color     = 'Black';
                          this.style.fontStyle = 'normal';
                      }" 
             onBlur="if (this.value == '') 
                     {
                         this.style.color     = 'gray';
                         this.value           = 'Enter User Name';
                         this.style.fontStyle = 'italic';
                     }" 
             AutoCompleteType="Disabled"  
             class="flatboxlogin" 
             runat="server" 
             BackColor="Transparent" 
             BorderColor="Transparent" 
             Font-Italic ="true"  
             ForeColor="gray">


EDIT ===========

Made your code snippet more readable.

License

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


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --