Here is what I have as best as I can explain it.
I have a partial view called experience that is basic html markup.
I have a page that contains rows of records (experience records) and one of the columns in these rows is an "edit" link column. When I click that link I want to pass the id of that row to a method that will package up the details of that row (linq query to the experience table using the passed in id).
(this is the important part) ...... I want the partial view (experience.ascx) along with its new Model containing the experience details to load in a modal dialog box rather than another page.
How can I accomplish this?
I'm new to all this so this may be was too little info ... if so let me know and I can expand. Thanks in advance
View Complete Post