Hi All,
I have a grid view which contains an edit button (ie: CommandName="Edit").
When clicked this button displays a form view with the required details
displayed.
Problem: When this buttons is clicked it is sending the Grid View into edit
mode, thus
displaying unwanted text boxes etc in the Grid.
Is there a way of stopping this?
Cheers,
A
Sajjad Haider - 07 Oct 2007 16:16 GMT
hi,
You have to use the css class, place a name of css class in the properties
of the label and textboxes
Code / Set the following properties
Label1.class = "labeltext"
Textbox1.class = "inputtext"
CSS File
.labeltext {
background-color:Yellow;
}
.inputtext {
background-color:#e1e1e1;
}
Hyder
> Hi All,
>
[quoted text clipped - 11 lines]
> Cheers,
> A