information fields |
4/26/2008 19:09:58 | |
| ASPRunnerPro General questions | ||
|
Y
yairilan author
Hi, I have some information fields from other tables that I use on my edit page as READ ONLY to help the user with the fields to be edited.
|
||
|
|
Sergey Kornilov admin 4/28/2008 |
|
You can use JOIN SQL query to pull data from more than one table. |
|
|
Y
|
yairilan author 4/28/2008 |
|
Tx Sergey. you are a genius!!!!!!! It was very helpfull !!! but now I have one ,ore problem cause I can't add a record: |
|
|
J
|
Jane 4/29/2008 |
|
Hi, str = "select FieldName2 from LookupTableName where FieldName='" & dict("FieldName") & "'" Set rsTemp = server.CreateObject("ADODB.Recordset") rsTemp.open str, dbConnection dict("FieldName2") = rsTemp("FieldName2") rsTemp.Close : set rsTemp = Nothing |
|