how to show data in horizontal form ......
-
i have three fields .... i want something like this image image image image name name name name i m using datalist wat this showing like this image name image name .... .... which control suit for my requirement.....
-
i have three fields .... i want something like this image image image image name name name name i m using datalist wat this showing like this image name image name .... .... which control suit for my requirement.....
can you put some code of it or you must better view the properties of it and by the way it provies you to change the column position.
-
i have three fields .... i want something like this image image image image name name name name i m using datalist wat this showing like this image name image name .... .... which control suit for my requirement.....
A data list won't do that, you need to use a repeater to try to build a table that conforms to your data layout.
Christian Graus Driven to the arms of OSX by Vista.
-
i have three fields .... i want something like this image image image image name name name name i m using datalist wat this showing like this image name image name .... .... which control suit for my requirement.....
As CG suggest, you can go for Repeater, or you can also use XSL.
cheers, Abhijit CodeProject MVP
-
can you put some code of it or you must better view the properties of it and by the way it provies you to change the column position.
i am using this in my source <asp:DataList ID="DataList1" runat="server" RepeatColumns="4" RepeatDirection="Horizontal"> <ItemTemplate> <tr> <td> <asp:Image ID="Image1" ImageUrl='<%#"~/Images/EmpOM/"+Eval("TE_VC50_EmpImg") %>' runat="server" Width="132" Height="160"/> <tr> <td> <%# Eval("TE_VC50_EmpName")%> </td> </tr> <tr> <td> <%# Eval("TE_VC50_EmpDesignation")%> </td> </tr> </td> </tr> </ItemTemplate> </asp:DataList><br /> wat should i change
-
A data list won't do that, you need to use a repeater to try to build a table that conforms to your data layout.
Christian Graus Driven to the arms of OSX by Vista.
actually i m binding dat from database and i have three fields... in rep data also come like that.. wat i want in one row..
-
actually i m binding dat from database and i have three fields... in rep data also come like that.. wat i want in one row..
-
actually i m binding dat from database and i have three fields... in rep data also come like that.. wat i want in one row..
OK, so do what I said.
Christian Graus Driven to the arms of OSX by Vista.