שלח תשובה

זירת השאלות

1 תשובות

  1. Yanushka הגיב:

    מחיקת עוגיות
    לא מומלץ להשתמש ב Response.Cookies.Remove כי :
    Deleting the cookie will take effect on the *next* postback, since the cookie information is still in Request
    עדיף:
    Response.Cookies("MyCookie").Expires = System.DateTime.Now.AddDays(-1)

שלח תשובה