1.保留文本框中的值:<p>Find @Html.TextBox("searchKey", ViewBag.Filter as string)</p> 这里必须有as string
2.一个问号表示该类型可以为null,两个问号表示如果该类型为null取默认值(string str1 = str2 ?? "[默认值]")
3.class、属性名中含有下划线(_)
@Html.TextBox("ProductName", "产品名称", new { id = "txtProductName", @class = "txt", property_name = "property_value" })
<input class="txt" id="txtProductName" name="ProductName" property-name="property_value" type="text" value="产品名称">
4.@Html.ActionLink是返回个a标签, @Html.Action是返回个Html页面