show/hide this revision's text 2 Add filename to code block

aspfunctions.asp should be inside tags so the asp is "executed", e.g.

aspfunctions.asp:
<%
    sub doStuff()
        Response.Write("In Do Stuff")
    end sub
%>

Otherwise the asp in aspfunctionsaspfunctions.asp is just seen as plain-text, so as far as the server is concerned, doStuff has never been defined.

show/hide this revision's text 1

aspfunctions.asp should be inside tags so the asp is "executed", e.g.

<%
    sub doStuff()
        Response.Write("In Do Stuff")
    end sub
%>

Otherwise the asp in aspfunctions is just seen as plain-text, so as far as the server is concerned, doStuff has never been defined.