grandfatheroften
Programmer
My application for online giving to a nonprofit org. uses ASP to list projects from database and sends uses URL from selected project in table to activate giving pages at an outside service that handles the transactions.
All works well, using the following code to request the link and to redirect to the outside URL.
<%
project_link=trim(request.form("link"))
response.redirect project_link
%>
But it opens the outside page in the same browser window. I want it to open a new window, so I have tried adding:
target="blank"
--- with and without a comma after 'project_link,' with and without parentheses, etc. No matter which variation, I get one compilation error or another.
Any help will be appreciated.
All works well, using the following code to request the link and to redirect to the outside URL.
<%
project_link=trim(request.form("link"))
response.redirect project_link
%>
But it opens the outside page in the same browser window. I want it to open a new window, so I have tried adding:
target="blank"
--- with and without a comma after 'project_link,' with and without parentheses, etc. No matter which variation, I get one compilation error or another.
Any help will be appreciated.