Atozed Forums
hide the parameters in the browser - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: hide the parameters in the browser (/thread-2864.html)



hide the parameters in the browser - staff@ergosoft.it - 09-09-2022

Hi,

I have 2 sites with intraweb ... I want to exchange some variables between the due ones...

I currently use from site 1 sending the variables through (esamples)


Webapplication.TerminateAndRedirect('https://www.site1.com?MyVar1=123&myvar2=ABC', False)

In site 2 I receive the variables with

HTTPDecode(WebApplication.RunParams.Values['MyVar1'])

I need to hide this data from the end user (in browser).

I use IntraWeb 15.

how can I do ?

thanks
Alessandro Romano


RE: hide the parameters in the browser - MJS@mjs.us - 09-09-2022

One way: 

  • Site 1 - Encrypt everything past the '?'.
  • URLEncode the encrypted string.
  • Pass it to site 2 as you are now.
  • Site 2 - URLDecode the RunParams string.
  • Decrypt resulting string.
  • Parse RunParams for values.



RE: hide the parameters in the browser - staff@ergosoft.it - 09-12-2022

Hi,

Thanks for the reply....
but I need to completely hide the parameters for security reasons.

Is it possible that there is no such possibility in IW?

thanks
Alessandro Romano