my advice - try to redesign your frontend to avoid popups. lots of browser block them and writing the javascript for it will be cumbersome. better change the page or integrate your input mask into the page.
Main Topics
Browse All TopicsIs it possible to create a window from within ASP.NET page, to get some input from user, then to pass result back to ASP.NET page. I could do the same by using another ASP.NET page I think it would be better this way.
Also, can this window contain ASP.NET controls?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Actually what I want to achieve is to offer the user (when populating fields) possibility to pick up the value from the list of the values or enter the new value (if it occurs for the first time). Drop down list might look as a perfect solution but as far as I know you cannot enter new data (it cannot serve as a text box). So I thought it would be a good solution to have a pop-up window with a list of the possible values. The pop-up window would be shown if you click on the small button following each of the fields (text boxes). But it seems better to avoid popups... So do you have any suggestion how to implement this idea?
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:
Answered by daveky
Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
TheLearnedOne
EE Cleanup Volunteer
Question for the author.... I have encountered the same dilemma dealing with dropdowns. I was stunned when starting ASP.net that there is no built-in functionality for it. While it helps with data integrity, it leaves you high and dry for so many applications of a dropdown. Did you figure out a good way to alter the list from the dropdown?
Did you try using the Visibiliy property on an asp:listbox that can unhide right below a textbox? That's my latest thought...still no decision though.
ps-I have some javascript that emulates an msaccess dropdown, but its really cumbersome code. If you're still llooking, I can send it/or a link to it to you.
Business Accounts
Answer for Membership
by: davekyPosted on 2003-01-27 at 02:29:09ID: 7820093
The only way to get a page into the browser is to send a response to it. That could be an aspx page or html page. The client could then provide their input and send it back to the server. You cannot ask for input mid *parse* as this is done on the server. Any dialog box would not be seen by the client. Try using msgbox() on the server - you will see what I mean. You may have to get your input in separate chunks from multiple responses and store them for the client until you have all that you need. What I think you are really getting at is a popup dialog however. This is possible using javascript on the client, but a response with the javascript to open the window needs to be sent to the client. This functionality is available in Internet Explorer only. However the javascript could open several "wizard" type windows in sequence to acheive what you want. As it is a javascript question ask in the javascript forum about ie dialog boxes for pertinant answers.