Click here to Skip to main content
15,906,301 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi, i m working on a travel portal,i want to add two rows in a repeater for connecting flight search.what will be the procedure for that?please help?
Posted

1 solution

<asp:Repeater ID="Repeter1" runat="server">
<ItemTemplate>
<asp:Label ID="litDeptName" runat="server" Text='<%#Eval("Column1") %>'></asp:Label>
<asp:Label ID="litUsage" runat="server" Text='<%#Eval("Column2") %>'></asp:Label>
</ItemTemplate>
</asp:Repeater>
 
Share this answer
 
Comments
shailendra.sahara 24-Aug-11 9:01am    
thanks amar but this is not the solution that i want. i my case there are multiple rows for multiple flights but there is any connecting flight i.e. delhi to kolkata then kolkata to lucknow,in this case we want to show both rows without any seperator and only one fare box..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900