Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
asp.netでのみブラウザの更新ボタンでセッションを期限切れにする方法について何か考えはありますか。ありがとう。C#、Js、または Jquery で応答を提供することもできます...
//this will solve the postback part (button click). //The refresh you should handle with querystring params protected void Page_Load(object sender, EventArgs e) { if(Page.IsPostBack) Session.Abandon(); }