Click here to hide categories Click here to show left categories
User: Home welcome : Guest Log In / Register here
[WebMethod(EnableSession = true)] public int SetCounter() { int counter; if (Context.Session["Counter"] == null) counter = 1; else counter = Convert.ToInt32(Context.Session["Counter"]) + 1; Context.Session["Counter"] = counter; return counter; }