這是我的.aspx頁面中的代碼,我使用自動完成的文本框。從代碼中的輸入框中獲取值
<script type="text/javascript">
$(document).ready(function() {
SearchText();
});
function SearchText() {
$(".autosuggest").autocomplete({
source: function (request, response) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Preferences.aspx/GetAutoCompleteData",
data: "{'Name':'" + document.getElementById('txtSearch').value + "'}",
dataType: "json",
success: function (data) {
response(data.d);
},
error: function (result) {
alert("Error");
}
});
}
});
}
</script>
<table style="width:auto">
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Please Type Student Name:"></asp:Label>
</td>
<td>
<input type="text" id="txtSearch" class="autosuggest" />
<asp:TextBox ID="TextBox1" runat="server" Text=txtsearch Visible="true" class="autosuggest"></asp:TextBox>
</td>
<td>
<asp:Button ID="btnAdd" runat="server" Text="Add" OnClick="btnAdd_Click" />
</td>
</tr>
</table>
如果我在
<input type="text" id="txtSearch" class="autosuggest" />
把RUNAT = 「服務器」,然後自動完成不工作。表單標籤用於主頁面。
問題使用控件的名稱屬性解決
源代碼:
<input type="text" name="_name" />
<asp:Button ID="btnShow" runat="server" Text="Show" onclick="btnShow_Click" />
代碼隱藏:
protected void btnShow_Click(object sender, EventArgs e)
{
string strValue = Page.Request.Form["_name"].ToString();
Response.Write(strValue);
}
參考:http://www.etechpulse.com/2013/02/get-html-input-controls-value-server.html
謝謝你們的幫助。
你想在頁面加載中調整它嗎?並檢查控制檯是否有任何錯誤? –
您正在執行ajax操作。這不會重新呈現整個頁面。您需要將響應值加載到控件。 – Kami