txheader.asp

This file (or the header.asp file, its non-transactional counterpart) should be included at the top of every page. It is used to specify the client and server side code page, response-buffering mode, and so on, for pages that require a new transaction. This file is only used by the files crdtcard.asp and po.asp.

Remarks

This file provides the following initialization code:

@ TRANSACTION=REQUIRES_NEW LANGUAGE=VBScript EnableSessionState=False
Option Explicit
Response.Charset = Application("MSCSPageEncodingCharSet")
Response.Buffer = True
Response.CacheControl = "no-cache"  
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
g_sPipelineProgID = "Commerce.PooledTxPipeline"

See Also

Solution Sites Include Folder

Copyright © 2005 Microsoft Corporation.
All rights reserved.