[SOLVED] Â Displaying Lookup Values On List Page |
6/29/2004 3:13:15 PM |
ASPRunnerPro General questions | |
D
dan_vt author
I am trying to find the best way to display lookup values on a list page. Here is a link to a page that allows you to see what I mean: |
|
![]() |
Sergey Kornilov admin 6/30/2004 |
Hi, |
D
|
dan_vt author 7/5/2004 |
first of all I have to say that links to your localbox or your intranet won't open here.
|
|
dcampbe11 7/17/2004 |
Hi, To pull data from lookup tables I would recommend you to use SQL INNER JOIN. Here is the sample SQL query: select field1, field2, table2.field1 from table1 inner join table2 on table1.ID = table2.ID You can either use this query in ASPRunner or create a query/view in your database on the top of this query and use this view as a datasource in ASPRunner.
|
![]() |
Sergey Kornilov admin 7/18/2004 |
Richard, |