Robert
|
| Posted: 02/22/2002, 1:30 PM |
|
Using the basic security model, if a person is not logged in and they attempt to access a page of a CC generated site they get redirected to the login page. During the redirect all parameters in the querystring are dropped. I'd like to retain those parameters as they will be used when the person gets into the application.
Does anyone know how to cause every page on a CC site to preserve the querystring params on redirect to the login page ?
Thank you !
-Robert
|
|
|
 |
AudiTT @ MCI
|
| Posted: 02/22/2002, 3:00 PM |
|
Set them as sessions.
Session("AppQuery") = Request.ServerVariables("QUERY_STRING")
Session("AppScript") = Request.ServerVariables("SCRIPT_NAME")
You can use a before show event... or something to set them... It needs to be before the check id statement... I think.
|
|
|
 |
|