You can't. Hyperlink works client-side, which know about things like
windows and targets. Redirect works from the server and knows nothing
about windows and such.
You will have to emit javascript that opens that other window and
redirects that.
Thanks for reply. The following is what I want to do:
I have two frames in a page: frame A and frame B. In frame A, I put a web
control - drop down list. The use will pick up from the drop downlist whose
each item indicates for a new URL. I want to disply the new URL in frame B.
Response.Redirect doesn't work for this purpose based on your answer.
You'll have to use client side code to redirect a specific frame to a
specific ASPX page.
I don't like to have to use such client side hacks which is why I stay away
from frames.