Mi sitio InicioRegistrarseEntrada
Inicio » 2012 » Noviembre » 30 » Se devuelve un valor NULL para cookie no existentes
8:41 PM
Se devuelve un valor NULL para cookie no existentes

Para resolver este comportamiento, compruebe para valores NULL asociados a cookie como se muestra en el ejemplo siguiente de códigos:



Microsoft .NET de Visual C

        HttpCookie cookie = Request.Cookies["SomeCookie"];
 
        if(cookie == null)
        {
               //CookieValue represents a WebForm Label control
               CookieValue.Text = "Cookie does not exist!";
        }
        else
        {
               //CookieValue represents a WebForm Label control
               CookieValue.Text = cookie.Value;
        }
                               
Microsoft Visual Basic . NET
        Dim cookie As HttpCookie = Request.Cookies("SomeCookie")
 
        If cookie Is Nothing Then
 
            'CookieValue represents a WebForm Label control
            CookieValue.Text = "Cookie does not exist!"
        Else
 
            'CookieValue represents a WebForm Label control
            CookieValue.Text = cookie.Value
        End If
Vistas: 361 | Agregado por: miket | Valoración: 0.0/0
Total de comentarios: 0
Solamente los usuarios registrados pueden agregar comentarios.
[ Registrarse | Entrada ]
Martes, 11.26.2024, 5:52 AM
Menú del sitio
Formulario de entrada
Búsqueda
Archivo de registros
Estadística

Total en línea: 1
Invitados: 1
Usuarios: 0
Calendario
«  Noviembre 2012  »
LuMaMiJuViSaDo
   1234
567891011
12131415161718
19202122232425
2627282930
 






Copyright nientiendo © 2024 Miguel A. Vallejo Duran