<table >
<asp:DataList ID="DataList1" runat="server" RepeatColumns="3" RepeatDirection="Horizontal"
Width="370px" RepeatLayout="Table" ItemStyle-Wrap="true"
ItemStyle-HorizontalAlign="Center"
>
<ItemStyle Wrap="True" HorizontalAlign="Center" VerticalAlign="Middle"></ItemStyle>
<ItemTemplate>
<div align="center" style="float: left; width: 95px; height: 100px; overflow: hidden;
padding: 1px; margin: 5px 0px 5px 0px; border-right: 1px #DAD9DA dotted;">
<table id="Table1" cellpadding="1" cellspacing="1" visible="true" width="100%">
<tr>
<td align="left" width="150px"><asp:Image ID="Image1" Height="50px" Width="50px" ImageUrl='<%# Eval("Image")%>' class="border" runat="server"/></td>
<td align="left" width="110px"><asp:Label ID="lblEmpName" runat="server" ForeColor="#000000" Text='<%# Eval("PostBy")%>' class="description"/></td>
<td align="left" width="110px"><asp:Label ID="Label3" runat="server" ForeColor="#000000" Text='<%# DataBinder.Eval(Container.DataItem,"Prosper Wall Posts")%>' class="description"/></td>
</tr>
</ItemTemplate>
</asp:DataList>
<table width="370px">
<tr>
<td>Select Topic </td>
<td>
<asp:DropDownList ID="ddl"
runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddl_SelectedIndexChanged">
<asp:ListItem>Select</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td>Comments</td>
<td> <asp:TextBox ID="txtmessage" runat="server" Visible="false" AutoPostBack="true" OnTextChanged="txtmessage_TextChanged"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2">
<asp:ImageButton ID="save" runat="server" ImageUrl="../prosper_images/sub_btn.png" OnClick="save_Click"/>
</td>
</tr>
</table>
</table>
iam using data;ist to dispaly 3 columns in single row ,then again i opened a table and places a dropdown and save button ,but in runtime iam able to see image bound fields only in datalist all other fields are not appearing what is the problem.Please bhelp me in this issue .It's very urgent
If i place in different tr they are appearing but not in single tr
vijaya