Classic asp include - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:12:46Zhttp://stackoverflow.com/feeds/question/120607http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/120607/classic-asp-include1Classic asp includeDamo2008-09-23T12:19:11Z2008-09-23T16:38:38Z
<p>Hi</p>
<p>I am trying to separate some asp logic out into a separat page.
For now i am trying to call a simple function.
Here is the simple index page i am using</p>
<pre><code><html>
<head>
<title>Calling a webservice from classic ASP</title>
</head>
<body>
<%
If Request.ServerVariables("REQUEST_METHOD") = "POST" Then
%>
<!--#include file="aspFunctions.asp"-->
<%
doStuff()
End If
%>
<FORM method=POST name="form1" ID="Form1">
ID:
<INPUT type="text" name="corpId" ID="id" value="050893">
<BR><BR>
<INPUT type="submit" value="GO" name="submit1" ID="Submit1" >
</form>
</body>
</html>
</code></pre>
<p>Here is aspfunctions.asp</p>
<pre><code>sub doStuff()
Response.Write("In Do Stuff")
end sub
</code></pre>
<p>When i hit the submit button on my form i get the below
sub doStuff() Response.Write("In Do Stuff") end sub</p>
<p>Microsoft VBScript runtime error '800a000d'</p>
<p>Does anyone have any idea what i could be doing wrong?</p>
<p>Any help is greatly appreciated</p>
<p>Thanks
Damien
Type mismatch: 'doStuff'</p>
<p>/uat/damien/index.asp, line 15 </p>
http://stackoverflow.com/questions/120607/classic-asp-include/120619#1206190Answer by Mudu for Classic asp includeMudu2008-09-23T12:21:18Z2008-09-23T12:21:18Z<p>If I remember correctly, you need no braces for calls without a return value (untested solution):</p>
<pre><code>doStuff
</code></pre>
http://stackoverflow.com/questions/120607/classic-asp-include/120623#1206235Answer by goths for Classic asp includegoths2008-09-23T12:22:15Z2008-09-23T12:22:15Z<p>You must have the asp functions inside the <% %> tag.</p>
http://stackoverflow.com/questions/120607/classic-asp-include/120632#1206323Answer by ConroyP for Classic asp includeConroyP2008-09-23T12:24:41Z2008-09-23T14:35:09Z<p><code>aspfunctions.asp</code> should be inside tags so the asp is "executed", e.g.</p>
<pre><code>aspfunctions.asp:
<%
sub doStuff()
Response.Write("In Do Stuff")
end sub
%>
</code></pre>
<p>Otherwise the asp in <code>aspfunctions.asp</code> is just seen as plain-text, so as far as the server is concerned, <code>doStuff</code> has never been defined.</p>
http://stackoverflow.com/questions/120607/classic-asp-include/120644#1206440Answer by Damo for Classic asp includeDamo2008-09-23T12:26:22Z2008-09-23T12:26:22Z<p>Hi guys</p>
<p>I cant believe i forgot the <% and %></p>
<p>Thanks so much for the quick response</p>
<p>have a good day guys</p>
http://stackoverflow.com/questions/120607/classic-asp-include/120855#1208551Answer by AdamH for Classic asp includeAdamH2008-09-23T13:04:50Z2008-09-23T16:38:38Z<p>You're including the other file within an if statement. This does not mean that it's dynamically included, it's not. It will always be included.</p>
<p>To see this in action try this sample:</p>
<pre><code><%
If 1=0 Then
'We never get here
%>
<!--#include file="aspFunctions.asp"-->
<%
dostuff()
End If
dostuff()
%>
</code></pre>