|
Posted by Harlan Messinger on September 20, 2007, 1:20 pm
Please log in for more thread options
Steve K wrote:
> I have a form that, when the submit button is clicked, the user is
> redirected to another webpage using the "next-url" input.
>
> But, the page that the form is in is in frames and the page it's being
> redirected to is also in frames. So after they hit submit, the new page
> is loaded within only one frame, we don't want this. I want it to go
> over top of that whole web page.
>
> I am very familiar with "target="_top" but not when the "next-url"
> option is used.
There isn't anything in HTML called "the next-url option". What you have
below is an ordinary hidden input control with the name "next-url" and
an associated initial value. If you are using some special web server
application that makes use of a value by this name, it will only be
known to people who use that application.
As for the target attribute, it belongs to the form's <form> tag.
>
> I tried using this code but it didn't work:
>
> <input type="hidden" name="next-url"
>
value="http://aem.cornell.edu/special_programs/gmp/module11/final_evaluation/mod
> ule11-ev.htm" target="_top" />
|