Using the Razor syntax how would I modify this:
@using (Html.BeginForm("SignUp", "Home"))
{ ... }
To redirect to a url like this:
http://mywebsite.com/Home/SignUp/#mybookmark
A similar question has been asked but it uses the aspx view engine.
Using the extension method I provided in my answer all you have to do is replace
<% %>with@in order to Razorify it: