Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parameters to pass

Status
Not open for further replies.

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 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=&quot; to report</a>

2.) with a form
[tt]
<form metho=&quot;post&quot; action=&quot;..... formelements
<input type=&quot;hidden&quot; name=&quot;IBIF_ex&quot; value=&quot;FEXNAME&quot;>
...... Submit Button
</form>
[/tt]

Hope this helps
Eva
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top