TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sie Ste
NA
196
184.4k
Formsview 2010 formatting
Dec 7 2011 12:15 PM
Within a formwview 2010 control, I have an html table where I want to format the header row. I would like to use CSS to format the header row. The CSS formatting is not picked up. Thus can you tell me what I need to do to the code below so that the CSS formatting works for the code below?
The following is the code:
The following is from the CSS code:
FormviewheaderStyle
{
border-style: Solid; border-collapse: collapse; vertical-align: top; text-align: center;background-color: #5F809F;
border-width: 1px 1px 1px 1px;color:White; font-family:Calibri; font-size:16; font-weight:bold;
}
The following is from the .aspx code:
<asp:FormView ID="FormView1" runat="server" DataSourceID="LinqDataSource1" AutoGenerateRows="False"
HorizontalAlign="Center" DefaultMode="Edit" DataKeyNames="Attestation_id" BorderStyle="None"
EnableModelValidation="True">
<EditItemTemplate>
<table border="1" cellpadding="0" cellspacing="0">
<tr class="FormviewheaderStyle">
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text='Att ID'></asp:Label>
</td>
<td>
<asp:Label ID="TextBoxAttid" runat="server" Text='<%# Eval("Att_id") %>'>
</asp:Label>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label10" runat="server" Text=' Submitted Late'></asp:Label>
</td>
<td>
<asp:Label ID="lblSubmitLate" runat="server" Text='<%# Eval("Submitted_Late") %>' />
</td>
</tr>
</table>
</EditItemTemplate>
</asp:FormView>
Reply
Answers (
2
)
How to Retrieve content from SQL database onto a label in paragraphs?
How to call store procedure by sqldatasource Programmatically to bind gridview