Response.redirect with a target attribute
I have a problem that Googling is not solving. Maybe someone can help out with this:
I want to redirect to an external site from my ASP.NET application but with a target=_blank attribute.
I also want to dynamically add querystring parameters to the URL in codebehind before doing the redirect.
Is this possible? I've seen some JavaScript that only works for static URL's. I want to append session variable values onto the end of the URL in codebehind before redirecting.
Any ideas?