How do I target a new browser window en ASP.NET MVC?
- by Richard77
Hello,
This is what I want: Let's say I have a textbox and a button on a page. when I click the button, I get a page in a new browser window where I can make some choices. when I click OK on that new window, it disappears and my choice appears in the textbox located in the first window.
How do I do that in ASP.NET MVC?
I know that what I'm trying to do can be easily obtained through JavaScript. However, I'd like to apply the unobtrusive principle. So, I'll do first without JQuery in mind then, later, add JQuery.
Thanks for helping