Apr 24, 2003 #1 rummage MIS Apr 8, 2003 33 US Hi, When I execute a FEX procedure from a HTML form (I am going to code it in the OnUnload event of the HTML form), How should the code be? Thanks Thambaiya
Hi, When I execute a FEX procedure from a HTML form (I am going to code it in the OnUnload event of the HTML form), How should the code be? Thanks Thambaiya
Apr 25, 2003 #2 kaeserea Programmer Feb 26, 2003 164 DE Hi Thambaiya, you can call the procedure from an HTML page in two ways. The user should see the report 1.) after clicking on a link 2.) after filling out a form and clicking on the submit button Here's the code for calling the report: 1.) with a link <a href="http://servername/cgi-bin/ibi_cgi/ibiweb.exe?IBIF_ex=FEXNAME">Go to report</a> 2.) with a form [tt] <form metho="post" action="http://servername/cgi-bin/ibi_cgi/ibiweb.exe">..... formelements <input type="hidden" name="IBIF_ex" value="FEXNAME"> ...... Submit Button </form> [/tt] Hope this helps Eva Upvote 0 Downvote
Hi Thambaiya, you can call the procedure from an HTML page in two ways. The user should see the report 1.) after clicking on a link 2.) after filling out a form and clicking on the submit button Here's the code for calling the report: 1.) with a link <a href="http://servername/cgi-bin/ibi_cgi/ibiweb.exe?IBIF_ex=FEXNAME">Go to report</a> 2.) with a form [tt] <form metho="post" action="http://servername/cgi-bin/ibi_cgi/ibiweb.exe">..... formelements <input type="hidden" name="IBIF_ex" value="FEXNAME"> ...... Submit Button </form> [/tt] Hope this helps Eva