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.
