所以我有一个收集一些数据的表格
我正在使用 jQuery ui lib 来获取表单。它是从这个 html 构建的:
<div id="dialog-form" title="form name">
<form>
<fieldset>
<label for="opis_naziv">Kratak opis: </label>
<input type="text" name="opis" id="opis_naziv" value="" class="text ui-widget-content ui-corner-all" /><br />
<div id='jqxDDHitnost'></div>
<label for="opis_sadrzaj">Puni opis: </label><br />
<textarea cols="76" name="opis_sadrzaj" id="opis_sadrzaj" rows="10" class="textarea ui-widget-content ui-corner-all" ></textarea><br />
<label for="dodatak">Dodaj datoteku (do 4MB): </label>
<input type="file" name="dodatak" id="dodatak" value="" class="file ui-widget-content ui-corner-all" /><br />
</fieldset>
</form>
</div>
和这个 javascript 来初始化它:
$("#dialog-form").dialog({
autoOpen: false,
height: 600,
width: 700,
modal: true,
buttons: {
"Kreiraj": function () {
//code needed
},
"Odustani": function () {
$(this).dialog("close");
}
}
});
我有 c# 代码服务器端,我想知道如何收集表单中的所有数据并将其发送到服务器。
有问题的是文件上传。其余的我知道如何发送但不确定文件。