i have 2 asp.net mvc views.
view1.aspx and view2.aspx.
of course they are [HTTPGet] Actions
for each view as well Models View1Model.cs and View2Model.cs
in view1.aspc I have a hyperlink <a href="\view2"></a>
, by clicking on it I'am landing on view2.aspx.
i want to pass some text message from view1 to view2 and display it on view2.aspx.
i want to do that with with POST method, how to do it?