本文介绍了在asp.net中使用AJAX进行部分页面刷新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试构建一个asp.net(3.5)网站。它包含两个webforms:



1.Parent.aspx --->此页面包含一个scriptmanager,updatepanel(有一个下拉列表连接到sqlsource,createnew按钮)和updatepanel外面的Refresh按钮。



-下拉列表显示sql中的客户名称表名为Customer。



2.Child.aspx --->这个webform包含一个名为txtCusName的文本框和一个提交按钮。





现在,我想要实现的目标如下:





- >当用户在parent.aspx时。它在下拉列表中查找客户名称。当用户没有在列表中看到所需的客户名称时。他按下createnew按钮。这将导致child.aspx显示在父项上。 aspx。



- >用户将使用txtCusName和提交按钮创建新的客户名称。新的客户名称将保存在数据库中。



我已经实现到这里,但之后关闭child.aspx并按下parent.aspx上updatepanel中的刷新按钮。下拉列表没有得到更新...



如何更新下拉列表???? plz帮帮我?????我想asap it it it。

I am trying to built an asp.net(3.5) website.It contains two webforms:

1.Parent.aspx--->This page contains a scriptmanager,updatepanel(having one dropdownlist connected to a sqlsource,createnew button) and a Refresh button outside updatepanel.

-The dropdownlist displays the customer name from the sql table named Customer.

2.Child.aspx--->THis webform contains a textbox named txtCusName and a submit buttton.


Now,What i want to achieve is the following:


-> When the user is at parent.aspx.It looks for the customer name in the dropdownlist.When the user doesnt see the required customer name in list.He presses the createnew button.This will cause the child.aspx to appear over the parent.aspx.

->the user will create new customer name by using txtCusName and submit button.The new customer name gets save in the database.

I have implemented till here but after that when i close the child.aspx and press refresh button in the updatepanel on parent.aspx.The dropdownlist is not getting updated...

how can i update the dropdownlist????plz help me out????? i want to imlement it asap.

推荐答案



这篇关于在asp.net中使用AJAX进行部分页面刷新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 12:03