|
I work with ASP pages and not familiar with JavaScript and other things.
I have a page that I moving from one hosting site to another.
Below is code the was part of a page that was an ordering taking page (Secure). The page has a form on it that when the form is submitted does the following.
<form ACTION="https://www903.bellsouth-hosting.net/cgi-bin/cgiemail/eztarg/emailconfirm.txt"
method="post" name="frmOrder" id="frmOrder" onSubmit="return getConfirm();" >
<input name="frmOrder" type="hidden" value="https://www903.bellsouth-hosting.net/eztarg/emailconfirm.htm"
The problem is I am not sure what is being done with the emailconfirm.text to make it fill out from the previous page.
I changed the page to the following on the new hosting site:
<form ACTION="https://eztarget.anonwebhost.com/emailconfirm.txt"
method="post" name="frmOrder" id="frmOrder" onSubmit="return getConfirm();" >
<input name="frmOrder" type="hidden" value="https://eztarget.anonwebhost.com/emailconfirm.htm" >
I know get the following error. What its suppose to be doing is population the .txt file and display. Should I create an ASP page or is there anywhere I can find information on what its doing or needs to be doing. I probably havent giving enough information but i am not sure what to ask.
The error I get is the page cannot be found. But i know its there because i can get to it via url.
Thanks,
Bob Leffew
|