sgadson
Posts: 45
|
| Posted: 01/06/2006, 7:26 AM |
|
Hello,
The following code shown in both the CCS 2 and CCS 3 user guide for adding a parameter to a page (asp.net vb) doesn't seem to work in CCS3. It worked fine in CCS 2.
Can anybody verify this and if correct, let me know what needs to be changed in the code so that it works in CCS 3.
***************************************************************
If IsNothing(Request.QueryString("Logout")) Or Request.QueryString("Logout") = "" Then
Dim params As New LinkParameterCollection()
params.Add("Logout","True")
Response.Redirect(Request.Url.AbsolutePath + "?" + params.ToString("GET","Logout"))
End If
******************************************************************
_________________
Shawn |
 |
 |
sgadson
Posts: 45
|
| Posted: 01/12/2006, 3:01 PM |
|
FYI
I submitted the same question to the support team and got the following response.
Please remove a question mark from code:
Response.Redirect(Request.Url.AbsolutePath + params.ToString("GET","Logout"))
I notified a responsible person about this mistake in CCS Help
_________________
Shawn |
 |
 |
|