我正在制作一个 MVC4 应用程序,它显示来自 CRM 的数据。
public ActionResult Index(string id)
{
MyApplication.Data.ResourceData resourceData = new MyApplication.Data.ResourceData();
var resource1 = resourceData.showResource(id);
return View(resource1);
//return View();
}
我在 CRM 中创建了一个按钮,当我单击该按钮时,我得到 Id get url www.MyApplication.com?123456 其中 123456 是 CRM 中数据的 Id。
现在如何解析数据以打开我的应用程序。
我的意思是如何告诉我的MVC 应用程序在之后获取字符串?并作为需要在索引中传递的 ID。