0

I am using 2 models for one view ,one model is showing in form and other one is also using form but it is showing in a div tag so after uploading image the pop up is closing but i need to show the pop up with the data?

KiShOrE
  • 933
  • 8
  • 25
  • Can you elaborate on how this is implemented? It's not clear what you are doing. Maybe add some code or describe the HTML involved. – Peter Jun 29 '12 at 12:00

1 Answers1

2

Simply returning another page can be accomplished by returning a RedirectResult from your action method:

return Redirect("url");

If that's not what you're looking for, then you'll need to be a bit more specific with your question, as it's not entirely clear what you are trying to do.

Peter
  • 1,488
  • 2
  • 17
  • 23