vote up 0 vote down star

hi all,

i'm using html , javascript & mod_python

i want to submit html form

i used

document.formName.submit();

after submitting

i want to redirect to new page

--i tried location="newpage.html" NOT working

flag

3 Answers

vote up 1 vote down

Unless you're submitting the form with AJAX then submitting will take the user to a new page, so you can't do a javascript redirect.

You could redirect on the server side, or change the action of the form.

link|flag
unfortunately using ajax is not allowed – mahmoud Oct 18 at 8:42
what do you mean AJAX is not allowed? You clearly are already making javascript a requirement, so I do not see any technical limitation here... – wiifm69 Oct 18 at 8:48
this is one of the requirements in the ancient organization :) where i'm working in , team leader will not accept this & and will say we have rules and standards (stupid system) anyway , i have found a solution Req.write('<script>location.href="page.py?fn=xxx";</script>') at the end of the python function that to be executed while submit thnx all – mahmoud Oct 18 at 9:43
vote up 0 vote down

Use ajax to submit the form. Then onSuccess callback, set window.location = new_url.

link|flag
unfortunately using ajax is not allowed – mahmoud Oct 18 at 8:41
vote up 0 vote down

Req.write('location.href="page.py?fn=xxx";')

at the end of the python function that to be executed while submit

thnx all

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.