In Javascript there is a function called eval(), which I use to get an object when I have its name stored in a string. E.G.
Code:
control='txtInput';
x=eval(control);
Is there an equivalent to this in VB.NET?