Atozed Forums

Full Version: hide the parameters in the browser
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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.
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