我已经开发了两个应用程序。 我需要当用户在其中一个按下一个按钮时,他通过javascript代码移动到另一个应用程序。
像:
window.location.href = mySecondAppURL
现在,我需要第二个应用程序来获取任何parmas,但我必须通过Request.ServerVariable实现它。
第二个应用程序是MVC应用程序。所以我看起来像:
public class myapplicationIndexController : Controller
{
public ActionResult Index()
{
if (Request.ServerVariables["MyParam"] != null)
{
//my code;
}
return View();
}
}
我应该如何在第一个应用程序javascript代码中传递params,以这种方式在第二个应用程序中获取它?
更新:第一个应用程序是Durandal应用程序,说有MVC包装但程序员在javascript页面中开发。