我对 MVC 完全陌生。我计划开发一个在 Web 和 Windows 上运行的应用程序。我关心的是 .net 中的 MVC 是否与 Windows 应用程序兼容?
如果是,是否可以根据以下某些条件返回带有 Windows 表单或网页的操作结果?
public actionresult Index()
{
if(some condition)
{
return View("webpage.html");
}
else
{
return View("Webform");
}
}/* code may note be having exact syntax. Just for understanding purpose.
让我知道开发这样的应用程序的解决方案是否可行。感谢您提供其他建议。