Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Help to fix this code:
'VB .NET Code to Destroy a Cookie
VB
Public Shared Sub DestroyCookie(ByVal CookieName As String)
    Dim CookieObj As HttpCookie = HttpContext.Current.Request.Cookies("CookieName")

    If CookieObj IsNot Nothing Then
        CookieObj.Expires = DateTime.Now.AddDays(-1D)
        HttpContext.Current.Response.Cookies.Add(CookieObj)

    End If
End Sub


VB
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
     DestroyCookie("xxxxxx.com")

 End Sub



Error:
Object reference not set to an instance of an object.


Please help me to fix this code....
Posted
Comments
Sergey Alexandrovich Kryukov 24-Mar-12 18:54pm    
Just use the debugger. This is one of the simplest problems.
--SA
ZurdoDev 26-Mar-12 11:04am    
What line of code does it fail on?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900