Server.Execute in scriptlet

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lim Chee H

    Server.Execute in scriptlet

    Hi All,

    I have an ASP calling a scriptlet. There is a method "Exec" which is
    using Server.Execute to run any ASP file/command. There rest of the methods
    are working fine.Somehow, wscAsp.Exec("my LocalProc"), didn't work. Please
    help.

    My ASP:

    <%
    Set wscASP = CreateObject("A SPScriptlet")
    wscASP.sName = "sName (R/W)= OK"
    %>
    <P>The current date is <%=wscASP.GetDa te()%></P>

    <P>The value of the Var1 is <%= wscASP.GetVar() %></P>
    <%
    Call wscAsp.Exec("my LocalProc")

    Sub myLocalProc
    response.write "Scriptlet is executing myLocalProc!"
    End Sub

    %>
    The Scriptlet, wscAsp.Exec method, is purely just call Server.Execute( "any
    string passed in")

    Thanks.


Working...