Pass data from one view to another view in MVC?
How to pass data from one view to another view in MVC?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Francis SusaimichaelPosted Feb 3, 2016, 8:07 AM
You can use "Session" object for this purpose. Ofcourse, you have other ways too like ViewData, TempData and ViewBag. But they are (ViewData and ViewBag) available only for the next request. TempData will avail still you read (if you want you can extend it's lifetime).
So, Session is best for your purpose.