//获取session中key对应的value
public static string GetSession(string name)
{
if (HttpContext.Current.Session[name] != null)
{
return HttpContext.Current.Session[name].ToString();
}
else
{
return "";
}
}
//存储key对应的value
public static void SetSession(string name, string value)
{
HttpContext.Current.Session[name]=value;
}
前台存储:
document.cookie = 'timeStamp=' + event.timeStamp + '; path=/;';
后台获取:
HttpCookie timeStamp = HttpContext.Current.Request.Cookies["timeStamp"];
string timestamp = timeStamp.Value.ToString();
Session和Cookie存储获取参数
最新推荐文章于 2023-02-03 01:06:08 发布
这篇博客介绍了如何在后台使用C#进行Session的存取操作,以及在前端通过设置Cookie来保存和传递时间戳。后台代码展示了获取和设置Session的实用方法,而前端通过JavaScript将事件时间戳存储为Cookie,后台则可以通过Request的Cookies集合获取这个值,实现数据的传递。
摘要由CSDN通过智能技术生成