I have a simple test application:
Model:
public class Counter { public int Count { get; set; } public Counter() { Count = 4;
Html.TextBox has more parameters than one..first parameter is the name or id of input element, and the second one is the value...
so write your textbox helper like this:
<%= Html.TextBox("Count",Model.Count) %>
cheers