In case anyone is wondering, the AS/400 makes a great platform for launching CGI-based Internet applications. I have written a complete e-commerce solution which integrates with my company's core software product. It was done entirely in ILE RPG and OPM RPG using several OS/400 API calls. Check out www.cdrsoftware.com/webcon to see it in action. Everything you see there is dynamically delivered using AS/400 CGI apps. -John

Reply With Quote
Another difference I noticed was you use onSubmit on the FORM tag for your javascript. I make the "submit" button just type "button" instead of type "submit" and use onClick on the button itself. How are you converting special characters (ie. %, ?, @, &, space) to their hex representations? Or have you had to deal with that. I've been using javascript to replace these with their %hex values and spaces to "+"s. Unless it's sensitive data, I then build a URL in javascript and use window.location="PGMNAM?var=" + var1 + "&var2=" + var2 etc.. etc... Again, avoiding RdStin. There sure are a lot of frames in that page! It looks nice though. Good job! 