@Html.TextBoxFor(m => m.EmployeeName, new { Class="YourBackgroundClass" })
Then you can have a CSS rule such as:
.YourBackgroundClass { background:#cccccc; }
If you want to apply a style directly you can do:
@Html.TextBoxFor(
m => m.EmployeeName, new { Style="background:#cccccc;" })