Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to open a new window programatically in CF

Status
Not open for further replies.

spook007

Programmer
May 22, 2002
259
US
I've always used cflocation to forward users to a new page, but how can I do that in a new window. The cflocation doesn't have a property like target="_blank" to open new content on a new page. Any suggestions are welcomed!! Thanks
 
you have to do it via client side somehow. either with the "target" in an <A> tag or using JS. cf doesn't open new windows.

Beware of programmers who carry screwdrivers.
 
Use window.open()

window.open("newwin.cfm",null,"height=600,width=600,status=yes,toolbar=no,menubar=no,location=no");




____________________________________
Just Imagine.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top