Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my ASP.NET project i want to add clientname using popup window and i want to fill the dropdown list ddl_client (which is in the form where popupwinow is called ) after submiting the client details in popup window.how it is possible.Popup window is called using javascript
Posted

1 solution

Using JavaScript/jQuery you can achieve the same.

One of the ways would be to use modal dialog to take client details and then pass the value to parent window on close. This article[^] would help you to achieve.

Alternatively, once popup window is closed, using Javascript, you can use XMLHttpRequest to get data from server and update the dropdown accordingly. Try!
 
Share this answer
 
Comments
Espen Harlinn 25-Feb-11 5:12am    
good advice, my 5
Sandeep Mewara 26-Feb-11 1:58am    
Thanks. :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900