我有一些頁面用html編寫,所有的控件都在html中,就像文本框一樣,我不能將這些控件更改爲@ html.text。 但我必須從controller中獲取數據並做一些邏輯數據。有人告訴我如何獲取數據? 這是我查看HTML代碼寫在HTML如何從html控件中獲取數據以查看控制器?
<div class="clearfix"></div>
<label class="label">Customer Name</label>
<select class="browser-default" name="Customername">
<option value="Customer Name1">Customer Name1</option>
<option>Customer Name2</option>
<option>Customer Name3</option>
</select>
<div class="pull-left"><a href="#" class="newCustomer">New Customer</a></div>
<div class="clearfix"></div>
<label class="label">Job Referene</label>
<select class="browser-default" name="jobreference">
<option>Job Referene</option>
</select>
<div class="clearfix"></div>
<label class="label">Quantity</label>
<input type="text" name="quantity" />
<div class="clearfix"></div>
<label class="label">Browser Select</label>
<select class="browser-default">
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
我想在我的控制器來獲取數據。
另請參閱:https://stack247.wordpress.com/2011/03/20/get-forms-post-values-in-asp-net-mvc-with-formcollection/ – Leon