CGIDEV2 has a ton of samples showing you how to pass data into a program from a browser, opening additional windows etc. Have you looked at any of them? To anwer you quickly if you have and are still confused, the browser starts the program with the URL http://server_name/directory/program.pgm?Parm1=data&Parm2=moredata
Your program would access the data in parm1 and parm2 with:
eval data1=zhbgetvar('PARM1')
eval data2=zhbgetvar('PARM2')
If you need to create a window that gets data with an input variable, then you need a form, and a post
<form name="inform" method="post" action="">
when the form is posted, it will construct the proper URL based upon the variables in the form that are designated input.
SPONSORED LINKS
| How to format a computer hard drive | Cobol programmer | Iseries 400 |
| How to format a computer |
YAHOO! GROUPS LINKS
- Visit your group "Easy400Group" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
