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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Skipping Multiple CFWindows

Status
Not open for further replies.

DiverMarv

Programmer
Jul 13, 2000
14
US
All,

I have been using the new cfwindow feature, and I love it. But now I'm using it within error trapping, and bubbled exceptions are causing the multiple creation of my support submission cfwindow. I get an error that the cfwindow already exists. I have tried a million ways to keep that from happening I even tried wrapping the cfwindow in a cfif like this:

<cfif NOT ISDEFINED("supportFormWindow")>
<cfset supportFormWindow = true>
<cfwindow title="Application Error Support Submission Form" name="supportFormWindow" center="true" modal="true" initshow="true" height="550" width="650">
<cfinclude template="Dsp_errorDisplayWithSupportForm.cfm">
</cfwindow>
</cfif>

But it still tries to create the window.

Any ideas?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top