Is this how to reset Session once a task is completed?
private double i { get { return Session["i"] != null ? (double)Session["i"] : 1; } set { Session["i"] = value; } }
Hi RichardSa,
No, from code.
Code to reset.
i = 1; // Call when want to reset the value.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.