Date:  03/05/2002 05:51:40 PM Msg ID:  000416
From:  Gary Thread:  000416
Subject:  Incorporating ASP
How can I use the following ASP script with a Foxweb script?

<%@ LANGUAGE="VBSCRIPT" %>
<%
    Application.lock
    If IsEmpty(Application("myProgresss")) then
    Set uplp = Server.CreateObject("Softartisans.FileUpProgress")
        Dim myProgressID
        myProgressID = uplp.NextProgressID
        Application("ProgressID") = myProgressID
    end if
    Application.unlock
%>

Can you use the Server.CreateObject method in a Foxweb script?

Gary