ユーザーがボタンをクリックすると、次のTextFieldsの値をにあるWebサービスに送信する必要があります/TestService/SaveMethod
。
<div class="content">
@Html.TextBoxFor(mo => mo.id, new { id = "id" })
<input type="text" id="fname" name="fname" />
<input type="submit" value="send" class="save"/>
</div>
jquery:
$(function () {
$('.save').click(function () { // How to grab the values of those textfields and send it over the webservice located at `/TestService/SaveMethod` });
});