kipdole
|
| Posted: 02/05/2003, 2:34 PM |
|
Hello,
I got the redirect asp page to work however the 2 parameters of course are not being passed to redirected page. If anyone knows how to do this I would appreciate it.
This code is in the page_redirect_call_log.asp pages open event.
If Session("UserRights")>2 then
Response.Redirect "page_call_log_edit_programmer.asp"
Else
Response.Redirect "page_call_log_edit_support.asp"
End If
The 2 parameters I receive are call_log_id and s_client_id.
Thanks!
|
|
|
 |
kipdole
|
| Posted: 02/05/2003, 3:14 PM |
|
This code is in a "redirect" type of page.
This code is in the page_redirect_call_log.asp pages open event.
sParams = ""
sParams = sParams & "s_client_id=" & GetParam("s_client_id") & "&"
sParams = sParams & "call_log_id=" & GetParam("call_log_id") & "&"
If Session("UserRights")>2 then
Response.Redirect "page_call_log_edit.asp?" & sParams
Else
Response.Redirect "page_call_log_edit_support.asp?" & sParams
End If
|
|
|
 |
|