J
|
Jane 2/9/2009 |
Hi, |
T
|
totti_60 author 2/9/2009 |
Hi, master key is stored in the Session(strTableName & "_masterkey1") variable.
|
J
|
Jane 2/9/2009 |
Hi, str = "select Field1,Field2 from MasterTable where Key=" & Session(strTableName & "_masterkey1") Set rstmp = server.CreateObject("ADODB.Recordset") rstmp.open str,dbConnection response.write rstmp("Field1") response.write rstmp("Field2") rstmp.close set rstmp=nothing |
T
|
totti_60 author 2/9/2009 |
Hi, you can select other fields based on the master key. Here is a sample:
|