This is the code I am tryijng to run
<cfinclude template="myglobals.cfm">
<!--- <!--- Are we forcing a certain application to be
used --->
<cfif isdefined("URL.SetApplication")>
<cfoutput>
<META HTTP-EQUIV="Refresh"
CONTENT="0;URL=#request.Website#/index.cfm?
FuseAction=hom.Home#Request.URLToken#">
<font face="Arial,Helvetica,sans-serif"
color="000080" size="2"><em><strong>Please wait..
</strong></em>Loading #request.branding.product#.<br>
<br>
<font size="1"><a
href="#request.Website#/index.cfm?
FuseAction=hom.Home#Request.URLToken#">If your browser
does not support automatic redirection, click
here</a></font></font>
</cfoutput>
<cfabort>
</cfif> --->
<!--- Redirect user to the same page, but append the token
to the end if
CFID and CFTOKEN don't exist in the URL --->
<cfif not isdefined("url.fuseaction") AND not isdefined
("form.fuseaction")>
<cfif cgi.query_string eq "">
<cflocation
url="#Request.Website#/index.cfm?
FuseAction=hom.Home#Request.URLToken#" addtoken="No">
<cfelse>
<cflocation
url="#Request.Website#/index.cfm?#cgi.Query_String#"
addtoken="Yes">
</cfif>
</cfif>
<!--- In case no fuseaction was given, I'll set up one to
use by default. --->
<cfparam name="attributes.fuseaction" default="hom.home">
<!--- Include Circuits if I'm the home app--->
<cftry>
<cfif NOT IsDefined( 'request.Circuits' )>
<cfinclude template="/hmapping/circuits.cfm">
</cfif>
<cfcatch type="MissingInclude">
<cfsetting enablecfoutputonly="No">
I couldn't find the file Circuits.cfm.
<cfabort>
</cfcatch>
</cftry>
<!--- Translate the fuseaction sent to me into a fully
qualified fuseaction --->
<cfparam name="faTranslated" default="FALSE"
type="boolean">
<cftry>
<cfif NOT faTranslated AND ListLen(
attributes.fuseaction, '.' ) GT 1>
<cfset attributes.fuseaction =
request.circuits[ListFirst( attributes.fuseaction, '.' )]
& '.' & ListLast( attributes.fuseaction, '.' )>
<cfset faTranslated = TRUE>
</cfif>
<cfcatch>
<cfsetting enablecfoutputonly="No">
I could not resolve the circuit
application prefix sent to me.
<cfabort>
</cfcatch>
</cftry>
<!--- Remove the first element of the
attributes.fuseaction so if we
are nesting down, then the cfinclude's will be
including the second element
of the fuseaction e.g.
attributes.fuseaction = master.sub.sub2
as they nest down, the includes will look like
(Root folder) /master/index.cfm
(Root folder/master) sub/index.cfm
(Root folder/master/sub) sub2/index.cfm
--->
<cfif ListLen( attributes.fuseaction, '.' ) GT 1>
<cfset attributes.fuseaction = ListDeleteAt(
attributes.fuseaction, 1, '.' )>
</cfif>
<!--- Peel off the first layer and determine whether to
delegate
the fuseaction. --->
<cfif ListLen( attributes.fuseaction, '.' ) GT 1>
<cfsetting enablecfoutputonly="No">
<cfinclude template="#ListFirst(
attributes.fuseaction, '.' )#/index.cfm">
<cfelse>
<!--- I'm going to get one (and only one)
fuseaction at a time.
Fuseactions correspond to methods or messages in
OO languages. --->
<cfsetting enablecfoutputonly="No">
<cfswitch expression="#attributes.fuseaction#">
<cfdefaultcase>
<cfoutput>
I received a fuseaction called <FONT
COLOR="000066">"#attributes.fuseaction#"</FONT>
that I don't have a handler for.</cfoutput>
</cfdefaultcase>
</cfswitch>
</cfif>
<cfsetting enablecfoutputonly="No">
>-----Original Message-----
>On Tue, 10 Aug 2004 09:39:10 -0700, "Patrick"
><anonymous DeleteThis @discussions.microsoft.com> wrote:
>
>>I am running a website that was working until yeaterday
>>when it just disappeared I do not get any errors when I
>>try to browse the page it comes up with an empty page
>>any Ideas.
>
>Put something on the page.
>
>Or give us enough details that we can help. Look at the
source and
>see what got sent to the browser. Look at the page from
the server.
>Try a Hello World version. If you can't figure it out
and need to ask
>us again, at least tell us what kind of page it is, and
show us the
>page code that is supposed to display. Post the log
entry wehn the
>page is requested.
>
>For all we can tell, you are setting the font color to
white and have
>a white background...
>
>Jeff
>.
><!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: IIS serves empty page