Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个需要调用 MVC 视图的 Asp.net 4.0 应用程序 WebForm。我可以在 QueryString 参数 (../Mvc/Recall?ID=1) 中将值传递给 MVC 吗?
我可以控制这两个应用程序的源代码。
是的,你会这样做。然后在 MVC 方面,您将拥有一个控制器和操作方法。
控制器:
public class MvcController : Controller
动作方法:
public ActionResult Recall(int id) { return View(); }