Does ASP Classic use reflection?

alilo

New Member
I saw a piece of Classic ASP code that looks as follows <% rs("Server.HTMLEncode(x)") %> and since I doubt that the record set has a property named "Server.HTMLEncode(x)" I was wondering if they meant to write <% Server.HTMLEncode(rs(x)) %> or if ASP Classic does reflection and somehow interprets that string literal as a method call.
 
Back
Top