W
Wayne Wengert
I have an aspx page I originzlly built in WebMatrix that includes a
"<table>" structure to layout the columns using "<tr>" and "<td>" elements
(see sample below). When I create a new aspx form in my VSNE2003 solution,
add a datalist component with table layout and paste that code, it doesn't
like the table related tags (<table>, <tr>, etc.). Using VSNET2003 what is
the correct way to specify the "table" layout (rows and columns)
============= code =================
<aspataList id="judgelist" runat="server">
<ItemStyle bordercolor="black"></ItemStyle>
<HeaderTemplate>
<table width="90%" cellpadding="5" >
<tr bgcolor="#b0c4de">
<th>
Action</th>
<th>
Judge</th>
<th>
Caption</th>
<th align="center">
Completed</th>
</HeaderTemplate>
<ItemTemplate >
<tr bgcolor="lightcyan">
<td id="myLink" runat="server">
.............
===================================
"<table>" structure to layout the columns using "<tr>" and "<td>" elements
(see sample below). When I create a new aspx form in my VSNE2003 solution,
add a datalist component with table layout and paste that code, it doesn't
like the table related tags (<table>, <tr>, etc.). Using VSNET2003 what is
the correct way to specify the "table" layout (rows and columns)
============= code =================
<aspataList id="judgelist" runat="server">
<ItemStyle bordercolor="black"></ItemStyle>
<HeaderTemplate>
<table width="90%" cellpadding="5" >
<tr bgcolor="#b0c4de">
<th>
Action</th>
<th>
Judge</th>
<th>
Caption</th>
<th align="center">
Completed</th>
</HeaderTemplate>
<ItemTemplate >
<tr bgcolor="lightcyan">
<td id="myLink" runat="server">
.............
===================================