I am new to asp.net and even though I have been successfully developing some decent pages that access backend SQL server using C# code behind, I have run into a problem that I need some nudge in the right direction on.
I need to be able to display records from a SQL datasource (could be displayed using SQLDataSource method OR using a dataReader OR using a gridview data fill) onto a page but I need other information displayed above and below the returned record. Its best if I show an example:
<horizontal seperator line>
Customer ID
Customer Name
Customer Address
City, ST
COLUMNS FOR THE RETURNED RECORD DATA
THE ACTUAL RECORD DATA
OTHER DYNAMICALLY CALCULATED DATA BELOW THE RECORDS
<horizontal seperator line>
And this repeats for every record that is returned
For the life of me, I can't find determine what view, template, or even best data binder or
data source control it is that I need to use to make this happen.
Thanks for anyone's assistance in advance.
dell