is it possible to pass a property eg. Person.Firstname by reference to a function and then still be able to read the attributes of Person.Firstname through this reference type?
so does the reference type know that it is not only a string but also the Firstname property of class Person?
tia
i try to write a extension for my asp.net mvc app that uses jquery.autotab and adds the necessary js code to the Html.TextBox output based on a attribute.
for example
Class Person
<Autotab("text", maxlength:= 15)> _
Property Firstname() as String
...
End Property
End Class
<%= Html.TextBoxAutoTab("Person.Firstname", p.Firstname) %>
the signature of TextBoxAutoTab looks like this
Public Function TextBoxAutoTab(ByVal h As HtmlHelper, ByVal name As String, ByRef value As Object) As String