Hi I want to make my textbox's width longer.
The view that is generated, uses @Html.EditorFor which I noticed I can't modify nor I can add css style to it.
So I checked, TextAreFor and it works but it creates a scrollbar since it is a textarea
e.g.
@Html.TextAreaFor(model => model.Name, new { cols=50, @rows=1 })
How would I remove the scrollbar? so it looks like it is a textbox? or is there another way to generate a textbox with a custom width?
Thanks,