したがって、ActionResult を返したいシナリオがあります... Return View("ViewName", "MasterPageName",model); 私が渡すことができる特定のサイズのポップアップウィンドウで...
例えば:
public ActionResult PopUp()
{
//do some work...
//I want this returned in a popup window/modal dialog of some sort...
return View("ViewName","MasterPageName",model);
}
asp.net mvcのコントローラーからこれを達成するための合理的な方法は何ですか?
前もって感謝します。