Reputation: 30388
I want to send users to a static view after they click submit in a form. This is a generic, "Thank you for your submission" view with no corresponding action method or model. Just static HTML. What does my Redirect look like? I usually redirect to an action method and couldn't find the right syntax.
Upvotes: 0
Views: 30
Reputation: 68400
Just use Redirect
method. Something like this
return Redirect("your_page.html");
Upvotes: 1