Asp.net MVC Razor more than one form on a page
问题 Yo I have a registration page on my site - at the top of the page is a login form for existing users. In the main area there is the registration form. The login are is a partial view with @model ViewModels.LoginViewModel The registration are is also a partial with @model ViewModels.RegViewModel The main page which houses these partials is a view with @model ViewModels.RegPageViewModel This viewmodel looks like: public class RegViewModel { public RegisterVm RegisterVm { get; set; } public