How can i pass value to another page dynamic,
I have a index page in which there is a dropdown and i want to pass the value to next page in MVC.
How can i pass value to another page dynamic,
I have a index page in which there is a dropdown and i want to pass the value to next page 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.
Vishal JoshiPosted Nov 23, 2023, 1:31 PM
Hello
You can use Session in asp.net to pass values from one page to another page.
store dropdown value to the session variable and access it from the next page.
Please check the below sample code.
Source Page
Destination Page
Thanks
Vishal Joshi