I have a number of form tags that look similar:
<form asp-area=@ViewBag.Area asp-controller=@ViewBag.Controller asp-action=@ViewBag.Action asp-route-returnurl="@ViewData["ReturnUrl"]" method="post" class="form-horizontal">
It would be nice if I put everything in "<form ... >" into a "super ViewBag" or partial view so I have it all in one place in case of changes. I've unsuccessfully tried a number of ways. Any ideas?