Hello,
I have in the URL variabele the "&" character. The browser thinks it's new variabele. What is the best to encode this
I see on the opened document info_popup_print_antemortem.asp that all the & char are replaced by %26.
Must I decode the URL on the opened document site? But how can I do this without changing the rest of my code like Request("CompName").
Thanks in advance.
Nico
I have in the URL variabele the "&" character. The browser thinks it's new variabele. What is the best to encode this
Code:
. Write "ExtraString='CompName=DAP Noord & OOST&Var2=xxxxxxx&var3=etc; "
.Write "ExtraString = ExtraString.replace(/\&/g, ""%26"");"
.Write "openModalWin'info_popup_print_antemortem.asp?'+ExtraString
I see on the opened document info_popup_print_antemortem.asp that all the & char are replaced by %26.
Must I decode the URL on the opened document site? But how can I do this without changing the rest of my code like Request("CompName").
Thanks in advance.
Nico