Hi i have this project where i have an string parameter on a page the form make the post to
/booking/confirm
but it need to post to
/Booking/Confirm?guid=013b0053-5840-4866-97c2-d544d8b6a34c
i could ofcourse just write
@using (Html.BeginForm())
but i need an class on the form for an jquery function so my using looks like this
@using (Html.BeginForm("Confirm", "Booking", FormMethod.Post, new { @class = "sigPad"}))