How can I use cflocation to open new tab?
I submit a form, then it should open a new tab and redirect the original page. Is it possible?
<cfform ACTION="./test.cfm" METHOD=POST>
Then in the test.cfm
<!-- Some database update here -->
<!--- I would like to open it in new tab --->
<cflocation url="newTab.cfm" addtoken="false">
<!--- Then refirect the current page to new link --->
<cflocation url="redirect.cfm" addtoken="false">
Is it possible to be done?
Thanks