| |||||
FormView.InsertRowStyle PropertySystem.Web.UI.WebControls Namespace FormView Class .NET Framework version 2.0 Sets or retrieves the style properties for the row currently being inserted in a FormView control. Syntax
Property ValueA TableItemStyle object that defines the style properties for the row currently in insert mode in a FormView. RemarksUse this property to provide a custom style for the row currently in insert mode in a FormView control. Common style attributes that can be set include forecolor, backcolor, font, and content alignment within the cell. Providing different row styles enhances the appearance of the FormView control. The InsertRowStyle subproperties can be set declaratively using either of the following methods:
The subproperties can also be set programmatically in the form InsertRowStyle.Property. For a list of style properties that can be set, see the TableItemStyle class. ExampleThe below snippet shows how to set the InsertRowStyle for a FormView control at design time. <asp:formview id = "msgView" runat = "server" ... >
<headerstyle backcolor = "steelblue"
forecolor = "beige" />
<rowstyle verticalalign = "top" />
<insertrowstyle backcolor = "lightgreen" />
<itemtemplate>
...
</itemtemplate>
</asp:formview>
See AlsoEditRowStyle EmptyDataRowStyle RowStyle |
| ||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme