Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

columnspan in asp:table

Status
Not open for further replies.

rotsey

Programmer
Nov 23, 2004
135
AU
Has anyone had any problems with the ColumnSpan property in the asp:table control.

I cannot get it to work??????????/

rotsey
 
What specifically are you attempting to do? Do you have a code sample of what is not working?

I believe it can be used for the <td> tag within a <asp:table> control. Something akin to the following:
Code:
<asp:table id="myTable" runat="server">
<tr>
<td colspan=2 id="myTD"></td>
<td colspan=1 id="myTD1"></td>
</tr>
</asp:table>

------------------------------------------------------------------------------------------------------------------------
"I am not young enough to know everything."
Oscar Wilde (1854-1900)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top