R
Robert Mark Bram
Hi All!
Let's say I have a form like this:
<form action="handler.asp"> ... </form>
Within handler.asp, I output a number of named anchors:
<a name="important1">Important 1</a> ...
<a name="important2">Important 2</a> ...
<a name="important3">Important 3</a> ...
In my form processing code, I want the returned page to jump to one of
these anchors depending on the result of the processing.
How can I do this?
I don't want to use a redirection because then I would have to
re-process the same page..
Any advice would be most appreciated!
Rob

Let's say I have a form like this:
<form action="handler.asp"> ... </form>
Within handler.asp, I output a number of named anchors:
<a name="important1">Important 1</a> ...
<a name="important2">Important 2</a> ...
<a name="important3">Important 3</a> ...
In my form processing code, I want the returned page to jump to one of
these anchors depending on the result of the processing.
How can I do this?
I don't want to use a redirection because then I would have to
re-process the same page..
Any advice would be most appreciated!
Rob