Hello. I'm stumped. Any help would be greatly appreciated.
]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
Here's the code:
Sub Display_Error_Page(lngErrorCode, strErrorDesc, strSub)
Dim strMsg
strMsg = strSub & "<BR>" & strErrorDesc
-------begin comments
'this response.write is just to display the value of sLogonInfo so I know what value should be passed in the query string
'july13 test
'Response.Write("slogoninfo = " & sLogonInfo & "<br>")
'july13 end
-------end comments
Response.Redirect "/BEPerformEval/Includes/Error.asp?Page=" & strCurrPage & "&Err=" & CStr(lngErrorCode) & "&Desc=" & strMsg & "&sLogonInfo=" & sLogonInfo
End sub
]]]]]]]]]]]]]]]]END OF CODE
All values in the query string are coming over to error.asp fine EXCEPT for the value of sLogonInfo. I am getting only the value of the 1st field in the concatenanted sLogonInfo string. SLogonInfo is a concatenated string of many data values (that can get somewhat long) that I display as an html comment so that I can debug in QA and Prodcution.
i.e. sLogonInfo = 'sSessionId = 12skdfj9348370243sdk
user logon id = abc1234
user name = george
What I get on error.asp for the querystring value of sLogonInfo = 'sSessionId = 12skdfj9348370243sdk
?????
]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
Here's the code:
Sub Display_Error_Page(lngErrorCode, strErrorDesc, strSub)
Dim strMsg
strMsg = strSub & "<BR>" & strErrorDesc
-------begin comments
'this response.write is just to display the value of sLogonInfo so I know what value should be passed in the query string
'july13 test
'Response.Write("slogoninfo = " & sLogonInfo & "<br>")
'july13 end
-------end comments
Response.Redirect "/BEPerformEval/Includes/Error.asp?Page=" & strCurrPage & "&Err=" & CStr(lngErrorCode) & "&Desc=" & strMsg & "&sLogonInfo=" & sLogonInfo
End sub
]]]]]]]]]]]]]]]]END OF CODE
All values in the query string are coming over to error.asp fine EXCEPT for the value of sLogonInfo. I am getting only the value of the 1st field in the concatenanted sLogonInfo string. SLogonInfo is a concatenated string of many data values (that can get somewhat long) that I display as an html comment so that I can debug in QA and Prodcution.
i.e. sLogonInfo = 'sSessionId = 12skdfj9348370243sdk
user logon id = abc1234
user name = george
What I get on error.asp for the querystring value of sLogonInfo = 'sSessionId = 12skdfj9348370243sdk
?????