I would like helpers in MVC to display all input tags with name and id in lowerCamelCase. Can this be done?
Examel: @ Html.TextboxFor (m => m.FirstName)
Default: <intput type="text" name="FirstName" id="FirstName" />
I would like: <intput type="text" name="FirstName" id="FirstName" />
source share