Hello,
I have a large form with buttons that link to other scripts that can take the action necessary.
After the action is complete, I want to return to the first form at the same place where the user was when they took the action.
I tried
TheSkip = Request.QueryString() && get skip to if any
if not empty(TheSkip)
TheSkipTo = "#"+TheSkip
response.redirect(TheSkipTo)
endif
The NAME contained in TheSkip exists but the form wouldn't load with this code in place.
Is there a technique to programatically jumping to a NAMED place in an HTML file?
Thanks,
Jeff