I only want to add the formId in the beginForm()
If i try using
Html.BeginForm(null, null, FormMethod.Post, new {@id="Id"})
then the Html generated is
<form action="/newquestion/payment/b9f88f80-f31f-4144-9066-55384c9f1cfc" ... >
i don't know how that action url is generated so i tried,
Html.BeginForm(new {@id="Id"})
but then the action url looks like this
<form action="/newquestion/payment/Id... >
In both the cases the action url is not what it should be and it is not hitting the post action of the controller.