ASP.NET Web API - Response with status code "Redirect (302)" doesn't work on Internet Explorer 10 -
i create request response status code "redirect (302)" without url redirect.
private httpresponsemessage verify(httpactioncontext actioncontext) { ... return actioncontext.request.createresponse(httpstatuscode.redirect, "credentials not found!"); }
the response on internet explorer 10 return status "(abort)" rather "redirect" , in other browsers (chrome , firefox) returns correctly.
Comments
Post a Comment