ASP.NET Postback创建一个新线程和一个新会话

时间:2016-05-31 05:36:54

标签: c# asp.net multithreading session-state pageload

我不是维护线程或会话,但是在回发期间定义的变量会丢失,因为会创建一个新线程。想法?

每次单击button1或button2时,

currentthreadid和sessionid都会更改。我更关注正在创建的新线程。求救!

这是我的WebForm1.aspx代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="UpdatePanelTest2.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" EnablePartialRendering="true" runat="server"></asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:Label ID="Label1" runat="server" Text="Before Click" />
                <asp:Button ID="Button1" runat="server" Text="Button1"  OnClick="Button1_Click" CausesValidation="false"/>
            </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />
            </Triggers>
        </asp:UpdatePanel>
        <asp:Button ID="Button2" runat="server" Text="Button2" OnClick="Button2_Click"/>
    </form>
</body>
</html>

这是我的WebForm1.aspx.cs代码

namespace UpdatePanelTest2
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

            string currentthreadid = AppDomain.GetCurrentThreadId().ToString();
            string sessionid = Session.SessionID;

            if (IsPostBack) { }
            if (IsAsync) { }
            if (IsPostBackEventControlRegistered) { }

            if (ScriptManager1.IsInAsyncPostBack) { }
        }

        protected void Page_Init(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            this.Label1.Text = "After Click";
        }

        protected void Button2_Click(object sender, EventArgs e)
        {

        }
    }
}

我的web.config文件

<?xml version="1.0"?>

<!--   For more information on how to configure your ASP.NET application, please visit   http://go.microsoft.com/fwlink/?LinkId=169433   -->

<configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.0" />
    </system.web>

</configuration>

更新

我需要它作为回发调用的相同线程的原因,因为我维护某些变量,然后为当前池线程重用这些变量

代码:

private static readonly ThreadLocal<PageContext> _context = new ThreadLocal<PageContext>(typeof(PageContext), "_context", true);
        private string[] _path;

        public static PageContext ForCurrentThread
        {
            get { return _context.Value ?? (_context.Value = new PageContext()); }
        }

 public void Initialize(HttpRequest _request)
        {
somestring = null;
}

public string somestring { get; set; }

当页面第一次加载时,somestring被赋予一个值,然后其他类使用相同的上下文并重新使用somestring值。如果为回发请求创建了一个新线程,则这不起作用。

1 个答案:

答案 0 :(得分:2)

这是设计的。在您实际使用SessionID之前,不会保存SessionID。

https://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.sessionid.aspx

  

使用基于cookie的会话状态时,ASP.NET不会分配   存储会话数据,直到使用Session对象。作为一个   结果,为每个页面请求生成一个新的会话ID,直到   访问会话对象。

如果将其添加到代码中,则SessionID将保持不变:

Session["foo"] = 1;

ASP.Net不保证您为每个请求获取相同的线程。该应用程序使用多个线程,它将从线程池中获取一个线程并使用它来处理请求。

我会说没什么值得担心的。

我会避免为特定线程存储内容。没有办法知道你是否会在下一个请求中获得相同的线程。不应该为特定用户存储该值(例如,会话)吗?

public static PageContext ForCurrentSession
{
    get 
    {
        if(Session["PageContext"] == null)
        {
            Session["PageContext"] = new PageContext();
        }
        return Session["PageContext"] as PageContext;
    }
}