Click here to Skip to main content
15,884,237 members
Articles / Web Development / ASP.NET

I want to Show list data (come from database multiple tables) in form layout

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
30 Jan 2013CPOL 0   1  
Hi Wasim, You can use the SQL query to concat both fields into one.In your example: "ex1" and "ex2" will become --> "ex1 | ex2"SELECT tbl.field1 + ' | ' + tbl.field2 AS resultShould get you there.Cheers, Edo

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
30 Jan 2013Wasim1989 1 alternative  
how to show dynamic data in form layout in edit mode. with two headers(Super header and sub Header)e.g. Subject // subject is main header (Subject)ex1 |ex2 // ex1 and ex2 sub header(no of exams of particular subject)25 |26 // 25 and 26 is marks in edit mode.ex1 and ex2 come from...

License

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


Written By
Chief Technology Officer
United States United States
Senior dish washing consultant for over 25 years!

Comments and Discussions