本文介绍了asp.net中的sessionid的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



在我的应用程序中,我使用sessionid.当我在按钮中编写代码时,单击如下所示:

Hi,

In my application i using sessionid. when i write code in button click like this:

protected void btn_Click(object sender, EventArgs e)
{
    Response.Write(Session.SessionID);
}



每当我单击按钮时,都会为每次单击创建新的sessionid,但是当用户访问该站点时,sessionid将保持不变.当他关闭站点时,会话将关闭.但是在我的情况下,sessionid会创建每个按钮,请单击



when ever i click on button, new sessionid is creating for every click but sessionid will remain same when user visit the site. when he close the site the session is closed. but in my case sessionid is creating every button click

推荐答案


这篇关于asp.net中的sessionid的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 10:05