我似乎有使用jQuery做PostBack的問題。帶有Webforms的jQuery回發
我可以回發沒有問題,但沒有我的頁面控制值在那裏。
代碼是這樣的;
WebForm.aspx;
<script src="/jQueryPlugins/jQuery.Form.js" type="text/javascript"></script>
<form id="myForm" action="MyForm.aspx" method="post">
<input type="text" runat="server" id="txtApplicantFirstName" />
</form>
也
$(document).ready(function() {
$('#myForm').ajaxForm(function() { alert(99); });
}
在背後說我的代碼
即可;
protected void Page_Load(object sender, EventArgs e)
{
string h = txtApplicantFirstName.Value;
}
爲什麼字符串h總是空的?
編輯
我張貼這樣在我的上一個錨的新聞界的JavaScript。
$('#myForm').submit();
編輯2
我只是想在一個全新的應用程序上面的代碼和它的作品。我現在可以看到的唯一區別是,我正在使用母版頁,因此表單位於母版頁中。
您正在使用jQuery表單插件? http://www.malsup.com/jquery/form/ – dlamblin
是的,我是。我從這裏得到它http://www.malsup.com/jquery/form/ – griegs