Ampersand in a Query string
Hi
I am trying to pass a variable with amersand in it - through a query string. It is not recognising the the characters after ampersand as part of same variable. How to solve this problem?
Example:
Mfr = "A&D Engineering";
document.frmRequestItems.action="RequestItems.asp? Mfr=" + Mfr;
document.frmRequestItems.submit();
|