Reputation: 287
Is it possible to change this:
@(Html.TextBox("q", Model.Search.FreeSearc))
to this:
<input type="text"... />
thanks...
Upvotes: 0
Views: 71
Reputation: 11731
You can try below code :-
<input id="q" name="FreeSearc" type="text" value = "@Model.Search.FreeSearc" />
Upvotes: 1