In VBScript I could do
Set obj = Server.CreateObject("ns." + request.form("obj")
response.write(obj.doSomething())
where request.form("obj" would change depending on what page I am on. When I try to do the same thing in Visual Studio, it won't compile saying "doSomething()" doesn't exist or something like that.
What are my options?
Thanks
Jason
Set obj = Server.CreateObject("ns." + request.form("obj")
response.write(obj.doSomething())
where request.form("obj" would change depending on what page I am on. When I try to do the same thing in Visual Studio, it won't compile saying "doSomething()" doesn't exist or something like that.
What are my options?
Thanks
Jason