Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「page.chtml」というビューがあり、そこから「actionname」というアクションに投稿したい
[HttpPost] public ActionResult actioname(...){...}
出来ますか?
Htmlヘルパーを使用して、希望の送信アクションでフォームを作成できます
@using (Html.BeginForm("actionName", "ControllerName", FormMethod.Post, new { id = "FormId", name = "FormName" })) { <div>//your page.cshtml inner html code goes here }