|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I am running IIS 5. I cannot POST data using the <FORM> tag to another ASP page.
I am not sure if this is the whole problem, but this is all I can see. ...Please help!! |
|
#2
|
|||
|
|||
|
It would help if you could post an example of the non-working code (including form tag, input tags, ect).
- Mike |
|
#3
|
|||
|
|||
|
function CallYes() {
document.frmProcess.action='finalizeorder.asp'; document.frmProcess.method='post'; document.frmProcess.submit(); } function CallNo() { window.location='order.asp'; } <a href="#" onClick="return CallYes();" onMouseOut="MM_swapImgRestore();window.status='';return true" onMouseOver="MM_swapImage('Yes','','Images/Btn-yes-dn.gif',1);window.status='';return true"> <a href="#" onClick="return CallNo();" onMouseOut="MM_swapImgRestore();window.status='';return true" onMouseOver="MM_swapImage('No','','Images/Btn-no-dn.gif',1);window.status='';return true"> The CallNo() routine works but the CallYes() routine doesn't. PS: They both work in IE but not NS |
|
#4
|
|||
|
|||
|
Have you got the <FORM> tags around the links?
<FORM NAME="frmProcess"> <a href="#" onClick="return CallYes();" onMouseOut="MM_swapImgRestore();window.status='';return true" onMouseOver="MM_swapImage('Yes','','Images/Btn-yes-dn.gif',1);window.status='';return true"> <a href="#" onClick="return CallNo();" onMouseOut="MM_swapImgRestore();window.status='';return true" onMouseOver="MM_swapImage('No','','Images/Btn-no-dn.gif',1);window.status='';return true"> </FORM> IE doesn't really need them, but NS does. ------------------ Good luck, Bas ------------------ E-mail me at: b.vandermeijden@pecoma.nl |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > Forms not POSTing data to the next page. |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|