c# - WebSecurity Class and iPad / Safari -
c# - WebSecurity Class and iPad / Safari -
i working in mvc 5 / c# , have used class called websecurity, have controller method:
public actionresult projectselection() { if (!websecurity.isauthenticated) { homecoming redirecttoaction("login"); } list<questionnaire> list = db.surveyquestionnaire.tolist(); homecoming view(list); }
this works fine on browsers , windows phone, when seek load on ipad using sarafi, redirected straight login page. there solution how can websecurity working on ipad?
c# asp.net-mvc ipad security asp.net-mvc-5
Comments
Post a Comment