1. <legend id='wsfzs'><style id='wsfzs'><dir id='wsfzs'><q id='wsfzs'></q></dir></style></legend><tfoot id='wsfzs'></tfoot>
      <bdo id='wsfzs'></bdo><ul id='wsfzs'></ul>

      <i id='wsfzs'><tr id='wsfzs'><dt id='wsfzs'><q id='wsfzs'><span id='wsfzs'><b id='wsfzs'><form id='wsfzs'><ins id='wsfzs'></ins><ul id='wsfzs'></ul><sub id='wsfzs'></sub></form><legend id='wsfzs'></legend><bdo id='wsfzs'><pre id='wsfzs'><center id='wsfzs'></center></pre></bdo></b><th id='wsfzs'></th></span></q></dt></tr></i><div id='wsfzs'><tfoot id='wsfzs'></tfoot><dl id='wsfzs'><fieldset id='wsfzs'></fieldset></dl></div>
    1. <small id='wsfzs'></small><noframes id='wsfzs'>

    2. ASP.Net MVC 5 中的 Cookie

      时间:2023-07-11

      <small id='sanSf'></small><noframes id='sanSf'>

        <bdo id='sanSf'></bdo><ul id='sanSf'></ul>

        <legend id='sanSf'><style id='sanSf'><dir id='sanSf'><q id='sanSf'></q></dir></style></legend>

            1. <tfoot id='sanSf'></tfoot>
              <i id='sanSf'><tr id='sanSf'><dt id='sanSf'><q id='sanSf'><span id='sanSf'><b id='sanSf'><form id='sanSf'><ins id='sanSf'></ins><ul id='sanSf'></ul><sub id='sanSf'></sub></form><legend id='sanSf'></legend><bdo id='sanSf'><pre id='sanSf'><center id='sanSf'></center></pre></bdo></b><th id='sanSf'></th></span></q></dt></tr></i><div id='sanSf'><tfoot id='sanSf'></tfoot><dl id='sanSf'><fieldset id='sanSf'></fieldset></dl></div>

                <tbody id='sanSf'></tbody>
              • 本文介绍了ASP.Net MVC 5 中的 Cookie的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在开发一个应用程序,其中用户通过 AAD、Google、WS 联合身份验证等外部身份提供程序进行注册或登录.现在我想在用户计算机上创建 cookie 以登录直到用户退出.给我一些想法并指导我如何克服它.提前致谢.

                I am developing an application in which users are SignUp or SignIn by External Identity Providers like AAD, Google, WS-Federated Authentication etc. Now I want to create cookies on a user machine to logged in until user SignOut. Give me some thought and guide me how I can overcome it. thanks in advance.

                推荐答案

                使用 Request.CookiesResponse.Cookies 来处理您的情况.一旦用户从第三方授权返回创建 cookie 并将其存储在浏览器中,一旦用户注销清除 cookie.

                Use Request.Cookies and Response.Cookies to handle your situation. once user coming back from third party authorization create cookie and store it in browser and once user Logout clear the cookie.

                 string cookievalue ;
                 if ( Request.Cookies["cookie"] != null )
                 {
                    cookievalue = Request.Cookies["cookie"].Value.ToString();
                 }
                 else
                 {
                    Response.Cookies["cookie"].Value = "cookie value";
                 }
                

                要删除 cookie,请使用以下代码

                For removing cookie use following code

                if (Request.Cookies["cookie"] != null)
                {
                    Response.Cookies["cookie"].Expires = DateTime.Now.AddDays(-1);   
                }
                

                这篇关于ASP.Net MVC 5 中的 Cookie的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:我可以在返回 html 的自定义 Tag Helper 中使用 Tag Helper 吗? 下一篇:ASP.NET Core Identity 在应用程序启动时添加自定义用户角色

                相关文章

                1. <small id='txR2l'></small><noframes id='txR2l'>

                  <tfoot id='txR2l'></tfoot>

                  • <bdo id='txR2l'></bdo><ul id='txR2l'></ul>

                2. <legend id='txR2l'><style id='txR2l'><dir id='txR2l'><q id='txR2l'></q></dir></style></legend>
                  <i id='txR2l'><tr id='txR2l'><dt id='txR2l'><q id='txR2l'><span id='txR2l'><b id='txR2l'><form id='txR2l'><ins id='txR2l'></ins><ul id='txR2l'></ul><sub id='txR2l'></sub></form><legend id='txR2l'></legend><bdo id='txR2l'><pre id='txR2l'><center id='txR2l'></center></pre></bdo></b><th id='txR2l'></th></span></q></dt></tr></i><div id='txR2l'><tfoot id='txR2l'></tfoot><dl id='txR2l'><fieldset id='txR2l'></fieldset></dl></div>