私は Html.BeginForm を使用しており、以下のように css クラスを渡しています。
@using (Html.BeginForm("Logon", "Account", FormMethod.Post, new { @class = "form" } ))
それはうまくいきますが、その後に returnURL クエリ文字列パラメーターを追加したいのですが、うまくいかないようです:
@using (Html.BeginForm("Logon", "Account", FormMethod.Post, new { @class = "form", returnUrl = Request.QueryString["ReturnUrl"] }))
複数の htmlAttributes を追加して、css クラスとクエリ文字列パラメーターを伝えるにはどうすればよいですか?