thanks, but i guess i didn't make my question clear enough. i have a database full of names of people with expertise in various areas in our company. we have a corporate phonebook on our intranet, which people can use to lookup phone numbers, etc. they type the target name into a form, which feeds an asp page that looks up the name in the corporate phonebook.
i just want to "fake" a call to that phonebook by looking up a known name and doing a faked call to the searcher. i can't change the search page, or get direct access to the phonebook, for "security" reasons.
for instance, if the (unchangable) search page did a Request.Querysting("name"

i could just make a URL with "?name=xxx" in it. but the (unchangable) search page apparently does a Request.Forms("name"

instead, so my hack won't work.
there must be a way to fake a post to the form field though -- i can't generate a form with a hidden field because i want to get to the (unchangable) search page by using a Response.Redirect after i've looked up the name - and if i build the hidden form field thing the Redirect will fail because it would have been a body write.
any ideas???