2
votes
ASP.net MVC: Getting a Paritial View’s HTML from inside of the controller
You would create your action like this:
public PartialViewResult LoginForm()
{
var model = // get model data from somewhere
return PartialVie …
