NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: JHojka on April 20, 2020, 08:49:38 AM
-
I have a browse button that calls a report. I need to have a browse that I conditionally load before the report is called.
Should I use redirection? If so how do I redirect from one nettalk webpage to another?
Jeff
-
Hi Jeff.
You can try it few ways.
The most easiest is redirect from the NetWebForm to another NetWebForm using the "URL on Save" option.
or try one of the following line:
a) p_web.Script(p_web.WindowOpen('IndexPage','_self'))
b) p_web.redirect('somewhere.htm')
c) p_web.Sendfile('MyOtherWebProcedure')
d) loc:formaction = 'indexpage'
loc:formactiontarget = '_top'
regards
Jason
-
Thank you very much. WindowOpen is such an odd name for a web procedure. Option A) does the trick and it allows me select the page which is a bonus.
Jeff