Angular与asp.net和多页

时间:2014-08-04 17:28:08

标签: javascript asp.net angularjs

我正在尝试创建角度应用程序,用户看到登录页面,登录成功后(第三方系统),登录页面向服务器发送验证请求,如果验证正常,服务器发送新的html用新的ng模块。我试过测试

$scope.doLogin = function () {
        $http.post("Home", "");
    };

并在服务器中

[HttpPost]
    public ActionResult Index(string session)
    {
        return RedirectToRoute("Application");
    }

Application route有不同的index.cshtml。 html传输正常,但新页面不呈现。我缺少什么/.

1 个答案:

答案 0 :(得分:0)

这就是诀窍

$scope.doLogin = function () {

        $window.location.assign("/Home/Index2");

    };