Sam
Sam

Reputation: 30388

Redirecting to a view

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

Answers (1)

Claudio Redi
Claudio Redi

Reputation: 68400

Just use Redirect method. Something like this

return Redirect("your_page.html");

Upvotes: 1

Related Questions