本文介绍了sessionstatebehaviour.readonly允许我将值写入会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

why sessionstatebehaviour.readonly allowing me to write value into session as below without any error

<pre lang="sql">[SessionState(SessionStateBehavior.ReadOnly)]
  public class TestController : Controller
  {
      //
      // GET: /Test/

      public ActionResult Index()
      {
          Session[&quot;vd&quot;] = &quot;cs&quot;;</pre>

推荐答案


这篇关于sessionstatebehaviour.readonly允许我将值写入会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 12:56