T
Thomas Scheiderich
Is there a way to make a section of a <td> tag to go to the bottom of the
cell?
Below is a portion of my page. The <td class="BodyText"> tag has a
"vertical-align:top" in the css file to move the data to the top of the
page.
I would like to take the section below the repeater (label and radio
buttons) and move them to the bottom of the cell.
Is there an easy way to do this?
<td class="BodyText"><br>
<div align="center" >
<center>
<table border="0" width="600" bgcolor="#000080"
style="vertical-align:top">
<tr>
<td width="100%" align="left"><font color="#FFFFFF" face="Arial
Black">QA Documents - <%= request.QueryString("name") %></font></td>
</tr>
</table>
</center>
</div>
<table border="0" width="600" cellspacing="5" cellpadding="2"
align="center">
<tr>
<td>
<form runat="Server">
<asp:Repeater
ID="rptAuthors"
runat="Server">
<ItemTemplate>
<font face="Arial" size="2" color="#000080"><b><a href="<%#
Container.DataItem("fullFileName") %>" target="_blank" ><%#
Container.DataItem("title") %></a></b></font><br>
</ItemTemplate>
</asp:Repeater>
<p>
<span class="HeaderText">Search Titles:</span><br>
<asp:TextBox
ID="txtSearchPhrase"
Columns="50"
Runat="Server" />
<asp:Button
Text="Search!"
OnClick="Button_Click"
Runat="Server" />
<asp:Label
ID="lblResults"
EnableViewState="False"
Runat="Server"
class="HeaderText" />
<asp:radiobuttonlist class="BodyText" ID="searchChoice"
runat="server" RepeatDirection="Horizontal" RepeatLayout="table"
TextAlign="right">
<asp:ListItem Text="All Documents" value="All" />
<asp:ListItem Text="Current Documents" value="Current"
Selected="True" />
</asp:radiobuttonlist>
</form>
</td>
</tr>
</table>
</td>
Thanks,
Tom.
cell?
Below is a portion of my page. The <td class="BodyText"> tag has a
"vertical-align:top" in the css file to move the data to the top of the
page.
I would like to take the section below the repeater (label and radio
buttons) and move them to the bottom of the cell.
Is there an easy way to do this?
<td class="BodyText"><br>
<div align="center" >
<center>
<table border="0" width="600" bgcolor="#000080"
style="vertical-align:top">
<tr>
<td width="100%" align="left"><font color="#FFFFFF" face="Arial
Black">QA Documents - <%= request.QueryString("name") %></font></td>
</tr>
</table>
</center>
</div>
<table border="0" width="600" cellspacing="5" cellpadding="2"
align="center">
<tr>
<td>
<form runat="Server">
<asp:Repeater
ID="rptAuthors"
runat="Server">
<ItemTemplate>
<font face="Arial" size="2" color="#000080"><b><a href="<%#
Container.DataItem("fullFileName") %>" target="_blank" ><%#
Container.DataItem("title") %></a></b></font><br>
</ItemTemplate>
</asp:Repeater>
<p>
<span class="HeaderText">Search Titles:</span><br>
<asp:TextBox
ID="txtSearchPhrase"
Columns="50"
Runat="Server" />
<asp:Button
Text="Search!"
OnClick="Button_Click"
Runat="Server" />
<asp:Label
ID="lblResults"
EnableViewState="False"
Runat="Server"
class="HeaderText" />
<asp:radiobuttonlist class="BodyText" ID="searchChoice"
runat="server" RepeatDirection="Horizontal" RepeatLayout="table"
TextAlign="right">
<asp:ListItem Text="All Documents" value="All" />
<asp:ListItem Text="Current Documents" value="Current"
Selected="True" />
</asp:radiobuttonlist>
</form>
</td>
</tr>
</table>
</td>
Thanks,
Tom.