I want to pass a property name as a string to @HTML.Textboxfor(). I cannot use @HTML.Textbox. The code could be something like @HTML.TextboxFor(model => model["PropertyName"]) or @HTML.TextboxFor("PropertyName") instead of @HTML.TextboxFor(model => model.PropertyName).
Again, I can't use @HTML.Textbox. Please help me out of this problem.