How do you call a method from a variable in ASP Classic? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:27:03Z http://stackoverflow.com/feeds/question/335659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic 0 How do you call a method from a variable in ASP Classic? Cory House 2008-12-02T22:14:05Z 2008-12-06T13:30:58Z <p>For example, how can I run me.test below?</p> <pre><code>myvar = 'test' me.myvar </code></pre> <p>ASP looks for the method "myvar" and doesn't find it. In PHP I could simply say $me->$myvar but ASP's syntax doesn't distinguish between variables and methods. Suggestions?</p> <p>Closely related to this, is there a method_exists function in ASP Classic?</p> <p>Thanks in advance!</p> <p><strong>EDIT:</strong> I'm writing a validation class and would like to call a list of methods via a pipe delimited string. </p> <p>So for example, to validate a name field, I'd call:</p> <pre><code>validate("required|min_length(3)|max_length(100)|alphanumeric") </code></pre> <p>I like the idea of having a single line that shows all the ways a given field is being validated. And each pipe delimited section of the string is the name of a method.</p> <p>If you have suggestions for a better setup, I'm all ears!</p> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic/335671#335671 0 Answer by Joel Coehoorn for How do you call a method from a variable in ASP Classic? Joel Coehoorn 2008-12-02T22:20:43Z 2008-12-02T22:20:43Z <p>ASP does not support late binding in this manner. What are you trying to do, in a larger sense? Explain that, and someone can show you how to accomplish it in asp.</p> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic/335675#335675 2 Answer by John MacIntyre for How do you call a method from a variable in ASP Classic? John MacIntyre 2008-12-02T22:21:27Z 2008-12-03T03:58:02Z <p>If you are talking about VBScript, it doesn't have that kind of functionality. (at least not to my knowledge) I might attempt it like this :</p> <pre><code>Select myvar case "test": test case "anotherSub": anotherSub else defaultSub end select </code></pre> <p>It's been a while since I wrote VBScript (thank god), so I'm not sure how good my syntax is.</p> <p>EDIT-Another strategy</p> <p>Personally, I would do the above, for security reasons. But if you absolutely do not like it, then you may want to try using different languages on your page. I have in the past used both Javascript AND VBScript on my Classic ASP pages (both server side), and was able to call functions declared in the other language from my current language. This came in especially handy when I wanted to do something with Regular Expressions, but was in VBScript.</p> <p>You can try something like </p> <pre><code>&lt;script language="vbscript" runat="server"&gt; MyJavascriptEval myvar &lt;/script&gt; &lt;script language="javascript" runat="server"&gt; function MyJavascriptEval( myExpression) { eval(myExpression); } /* OR function MyJavascriptEval( myExpression) { var f = new Function(myExpression); f(); } */ &lt;/script&gt; </code></pre> <p>I didn't test this in a classic ASP page, but I think it's close enough that it will work with minor tweaks.</p> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic/335687#335687 1 Answer by TravisO for How do you call a method from a variable in ASP Classic? TravisO 2008-12-02T22:27:05Z 2008-12-02T22:27:05Z <p>PHP's ability to dynamically call or create functions are hacks that lead to poor programming practices. You need to explain what you're trying to accomplish (not how) and learn the correct way to code.</p> <p>Just because you can do something, doesn't make it right or a good idea.</p> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic/344654#344654 2 Answer by AnthonyWJones for How do you call a method from a variable in ASP Classic? AnthonyWJones 2008-12-05T17:54:37Z 2008-12-05T17:54:37Z <p>You can achieve this in VBScript by using the <code>GetRef</code> function:-</p> <pre><code>Function Test(val) Test = val &amp; " has been tested" End Function Dim myvar : myvar = "Test" Dim x : Set x = GetRef(myvar) Response.Write x("Thing") </code></pre> <p>Will send "Thing has been tested" to the client.</p> <p>So here is your validate requirement using GetRef:-</p> <pre><code>validate("Hello World", "min_length(3)|max_length(10)|alphanumeric") Function required(val) required = val &lt;&gt; Empty End Function Function min_length(val, params) min_length = Len(val) &gt;= CInt(params(0)) End Function Function max_length(val, params) max_length = Len(val) &lt;= CInt(params(0)) End Function Function alphanumeric(val) Dim rgx : Set rgx = New RegExp rgx.Pattern = "^[A-Za-z0-9]+$" alphanumeric = rgx.Test(val) End Function Function validate(val, criterion) Dim arrCriterion : arrCriterion = Split(criterion, "|") Dim criteria validate = True For Each criteria in arrCriterion Dim paramListPos : paramListPos = InStr(criteria, "(") If paramListPos = 0 Then validate = GetRef(criteria)(val) Else Dim paramList paramList = Split(Mid(criteria, paramListPos + 1, Len(criteria) - paramListPos - 1), ",") criteria = Left(criteria, paramListPos - 1) validate = GetRef(criteria)(val, paramList) End If If Not validate Then Exit For Next End Function </code></pre> <p>Having provided this I have to say though that if you are familiar with PHP then JScript would be a better choice on the server. In Javascript you can call a method like this:-</p> <pre><code>function test(val) { return val + " has been tested"; ) var myvar = "test" Response.Write(this[myvar]("Thing")) </code></pre> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic/344709#344709 0 Answer by Greg Ogle for How do you call a method from a variable in ASP Classic? Greg Ogle 2008-12-05T18:14:25Z 2008-12-05T18:14:25Z <p>Additionally, you might consider "objectifying" the validation functionality. Making classes is possible (though not widely used) in VB Script.</p> <pre><code>&lt;% Class User ' declare private class variable Private m_userName ' declare the property Public Property Get UserName UserName = m_userName End Property Public Property Let UserName (strUserName) m_userName = strUserName End Property ' declare and define the method Sub DisplayUserName Response.Write UserName End Sub End Class %&gt; </code></pre> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic/346266#346266 1 Answer by Neil for How do you call a method from a variable in ASP Classic? Neil 2008-12-06T13:30:58Z 2008-12-06T13:30:58Z <p>Use the "Execute" statement in ASP/VBScript.</p> <pre><code>Execute "Response.Write ""hello world""" </code></pre>