如何使用 cflocation 打开新标签?
我提交了一个表单,然后它应该打开一个新选项卡并重定向原始页面。可能吗?
<cfform ACTION="./test.cfm" METHOD=POST>
然后在 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">
有可能做到吗?
谢谢