> We are making a theatre booking system and we want the
> cell of grid to change color when we click on it.
>
> *** Sent via Developersdexhttp://www.developersdex.com***
Hello, Matthew-- I'm doing something like that in my app. Maybe this
will work for you:
<asp:TextBox id="textbox1" runat="server"
onclick="this.style.background-color='#FFFF99'; this.select()"></
asp:TextBox>
Google for javascript style attributes to see a comprehensive list.
Hope that helps!