In one of my MVC 4 Projects I have the following code.

Code:
       @Html.LabelFor(Function(m) m.TicketDetail)
       @Html.TextBoxFor(Function(m) m.TicketDetail)
The following HTML is being rendered. At some point I did add this value but no longer using it. How do I get it removed?

Code:
<label for="TicketDetail" class="ui-input-text">Ticket Detail</label>
<input id="TicketDetail" name="TicketDetail" type="text" value="This is a detail" class="ui-input-text ui-body-b ui-corner-all ui-shadow-inset">