URL Link to Master record |
8/11/2008 1:41:43 PM |
ASPRunnerPro General questions | |
C
cmayers author
I am sending an email to the email address in the record to notify them of a record in the application. I would like to give them them URL to bring up the record being saved. porID is the ID field for the Master table. |
|
J
|
Jane 8/12/2008 |
Hi, |
C
|
cmayers author 8/12/2008 |
Hi, I'm not sure that I understand you. What URL do you want to send?
|
J
|
Jane 8/13/2008 |
Carol,
if request.querystring("user")<>"" and request.querystring("table")<>"" then str="select * from UsersTable where Username='" & request.querystring("user") & "'" Set rsTemp = server.CreateObject("ADODB.Recordset") rsTemp.open str, dbConnection SESSION("UserID") = request.querystring("user") SESSION("AccessLevel") = ACCESS_LEVEL_USER rsTemp.Close set rsTemp = Nothing Response.redirect request.querystring("table") & "_list.asp?mastertable=por%2EDealerPors&masterkey1=" & request.querystring("masterkey1") End if |
C
|
cmayers author 8/13/2008 |
Carol, here are some tips:
|
J
|
Jane 8/14/2008 |
Carol, |