yeah I understand that, but that doesn't open a new browser window. here is my code
Dim sb As New StringBuilder()
sb.Append("newgoals.aspx?daname="
sb.Append(Server.UrlEncode(theid))
sb.Append("&dayear="
sb.Append(Server.UrlEncode(dayear))
Response.Redirect(sb.ToString)
Somewhere I need to have something like "Target="_blank" but I don't know how you would add this. any ideas?
I ran into this problem a while back. I don't remember ever finding a solution though.
I did however, find a workaround. Build up your string and write some javascript to the page using the statment
window.open(blahblah) where blahblah is your URL with query string. That'l do donkey, that'l do
Mark
If you are unsure of forum etiquette check here faq796-2540
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.