Date:  02/17/2010 11:46:06 AM Msg ID:  004122
From:  Jeff Grippe Thread:  004122
Subject:  How do you jump to the middle of a form
 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