本文介绍了如何使用Ajax下拉选择的索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,专家,
在我的asp.net网站上(在Update_Category.aspx页上),我正在更新类别.
我正在从下拉列表中选择要更新的类别.选择类别后,它将在文本框(txtCategory)中显示类别.
这对我有用.但是它刷新了整个页面.我如何为此使用ajax.
在此先感谢............
Hi Expert ,
In my asp.net website(on Update_Category.aspx page),i am updating Category.
I am selecting category to update from dropdownlist.After selecting category then it display category in textbox(txtCategory).
This is working for me.But it refresh entire page.How i can use ajax for this.
Thanks in advance............
推荐答案
<asp:UpdatePanel ID="updgrid" runat="server">
<ContentTemplate>
<asp:dropdownlist id="ddlCategory" runat="server" autopostback="True" onselectedindexchanged="ddlCategory_SelectedIndexChanged" xmlns:asp="#unknown">
</asp:dropdownlist>
<asp:textbox id="txtCategory" runat="server" xmlns:asp="#unknown"></asp:textbox>
//在选定的索引已更改的情况下,填充文本框
//in selected index changed fill the textbox
这篇关于如何使用Ajax下拉选择的索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!