标签: asp.net razor webmatrix
我的应用程序中有一个表单,某些类别中的“price”字段我不希望该字段出现在用户表单中。怎么可能呢?
答案 0 :(得分:0)
您可以使用隐藏的输入字段来执行此操作。
<input type="hidden" name="price" value="The value you want">
在提交时,它仍会将其值发送给数据库,但用户无法看到它。