sirichai
Posts: 22
|
| Posted: 11/21/2006, 12:02 AM |
|
Hi,
I want to pass parameter from login screen the user login to the other page(all pages) for update to table database. Hearing CCGetParam function can support.
How can codeing it on login screen and receive parameter screen.
Function Login_Button_DoLogin_OnClick(Sender) 'Login_Button_DoLogin_OnClick @3-57DDB0BB
'Login @4-3D04C4CB
With Login
If NOT CCLoginUser(.login.Value, .password.Value) Then
.Errors.addError(CCSLocales.GetText("CCS_LoginError", Empty))
Login_Button_DoLogin_OnClick = False
.password.Value = ""
Else
If Not IsEmpty(CCGetParam("ret_link", Empty)) Then _
Redirect = CCGetParam("ret_link", Empty)
Login_Button_DoLogin_OnClick = True
End If
End With
'End Login
Thanks
Sirichai
|
 |
 |
|