Classic asp include - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:12:46Z http://stackoverflow.com/feeds/question/120607 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120607/classic-asp-include 1 Classic asp include Damo 2008-09-23T12:19:11Z 2008-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>&lt;html&gt; &lt;head&gt; &lt;title&gt;Calling a webservice from classic ASP&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;% If Request.ServerVariables("REQUEST_METHOD") = "POST" Then %&gt; &lt;!--#include file="aspFunctions.asp"--&gt; &lt;% doStuff() End If %&gt; &lt;FORM method=POST name="form1" ID="Form1"&gt; ID: &lt;INPUT type="text" name="corpId" ID="id" value="050893"&gt; &lt;BR&gt;&lt;BR&gt; &lt;INPUT type="submit" value="GO" name="submit1" ID="Submit1" &gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </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#120619 0 Answer by Mudu for Classic asp include Mudu 2008-09-23T12:21:18Z 2008-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#120623 5 Answer by goths for Classic asp include goths 2008-09-23T12:22:15Z 2008-09-23T12:22:15Z <p>You must have the asp functions inside the &lt;% %> tag.</p> http://stackoverflow.com/questions/120607/classic-asp-include/120632#120632 3 Answer by ConroyP for Classic asp include ConroyP 2008-09-23T12:24:41Z 2008-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: &lt;% sub doStuff() Response.Write("In Do Stuff") end sub %&gt; </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#120644 0 Answer by Damo for Classic asp include Damo 2008-09-23T12:26:22Z 2008-09-23T12:26:22Z <p>Hi guys</p> <p>I cant believe i forgot the &lt;% 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#120855 1 Answer by AdamH for Classic asp include AdamH 2008-09-23T13:04:50Z 2008-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>&lt;% If 1=0 Then 'We never get here %&gt; &lt;!--#include file="aspFunctions.asp"--&gt; &lt;% dostuff() End If dostuff() %&gt; </code></pre>