Thursday, 10 July 2014

Change the colour of textbox Onclick event

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <style>
        .textbox
        {
            background-color:RED;
        }
       
        .textbox:focus
        {
            background-color: Silver;  
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
   <table>
 <tr>
        <td>
            <asp:TextBox ID="TextBox2" runat="server" Height="61px" TextMode="MultiLine"
                Width="160px" CssClass="textbox"></asp:TextBox>
        </td>
   <tr>
  </table>
    </form>
</body>
</html>

No comments:

Post a Comment