I have a select control that contains just a few codes:
A1
B2
?#
?!
When a user selects a code i trigger a query run against a db table(Oracle) for the description of that code using the code as a match criteria. For example if i choose "A1" i get "description X" to populate an adjacent text area control and so forth. Everything works except when the user selects "?#".
When the user selects "?#" the query returns nothing - although I can see that the right parameter is being passed in my querystring at the address bar of the browser window.
It's strange because I am using "server.HTMLEncode(request.QueryString("Var1")" but it's not working..
Does anyone know whats wrong and/or what i need to do to fix it?
Any help at all is greatly appreciated..
A1
B2
?#
?!
When a user selects a code i trigger a query run against a db table(Oracle) for the description of that code using the code as a match criteria. For example if i choose "A1" i get "description X" to populate an adjacent text area control and so forth. Everything works except when the user selects "?#".
When the user selects "?#" the query returns nothing - although I can see that the right parameter is being passed in my querystring at the address bar of the browser window.
It's strange because I am using "server.HTMLEncode(request.QueryString("Var1")" but it's not working..
Does anyone know whats wrong and/or what i need to do to fix it?
Any help at all is greatly appreciated..