Help > Web Development > Object Reference > Code Samples > ASP > GLOBAL.ASA
<a name="kanchor588"></a>GLOBAL.ASA
Demonstrates adding ISYS to your global.asa

<!-- METADATA TYPE="TypeLib" UUID="{B1539EF3-3287-4580-A99D-57CF4B688AC6}" --> <!-- ISYS --> <% sub Application_OnStart ' Load the ISYS object in application scope. This ensure maximum object reuse. set Application("ISYS") = Server.CreateObject("ISYS.ISYSAsp") ' Prepare the image cache set Application("ISYSImageCache") = Server.CreateObject("ISYS.ISYSImageCache") ' Set ISYS defaults Application("ISYS").Config(isysConfigResultType) = 1 ' ResultID is Guid Application("ISYS").Config(isysConfigResultSecure) = False ' Protect result list end sub %>