jqueryUI タブの HTML。
<div id="lodg_tabs" class="tabs">
<ul>
<li><a href="#tabs-1">Add/Remove</a></li>
<li><a href="mand_lodg_upd.aspx">Update</a></li>
</ul>
<div id="tabs-1" class="forms">
<h3 align="center">Mandate Lodgment</h3>
<form name="mand_lodg" id="mand_lodg" method="post">
「mand_lodg_upd.aspx」をロードするタブにパラメーターを送信する ajax コード
$("#lodg_tabs").tabs({
select: function (event, ui) {
var res = valid('mand_lodg');
$(this).tabs("option", { ajaxOptions: { data: $("#mand_lodg").serialize()} });
},
ajaxOptions: {
type: 'POST',
error: function (xhr, status, index, anchor) {
$(anchor.hash).html("An error has been encountered while attempting to load this tab.");
}
},
cache: false
});
C# コード ビハインド
Response.Write(Request.Form["zone"] + Request.QueryString["zone"]);
zone.Value = Request.Form["zone"];
loc.Value = Request.Form["loc"];
date.Value = Request.Form["date"];
出力:出力は問題ありません。ファイルはタブにロードされています
問題:しかし、ajax ieで渡されたパラメーター
$(this).tabs("option", { ajaxOptions: { data: $("#mand_lodg").serialize()} });
ゾーンの場所と日付は、C# コード ビハインドで null です