I have a simple form where I would like to append a hash variable to the end of the action. My code looks like this:
@using(Html.BeginForm(MVC.Checkout.Index(), FormMethod.Post))
{
//Form stuff here
}
Which renders:
<form action="/Checkout" method="post">
When the form is rendered I would like it to be:
<form action="/Checkout#someParam" method="post">
Is this possible with T4MVC?