Forum OpenACS Q&A: How can I redirect in a new window

Is there a way to do an ad_returnredirect , but opening the resulting page in a new window?
Konstantinos
Collapse
Posted by Nis Jørgensen on
Short answer: No. The user has just opened a link in a browser window, and the document you send them will be displayed in that window always

You will need to open the new window from the link - either using <a href="foobar" target="_blank"> (good) or javascript (bad).