Mi sitio InicioRegistrarseEntrada
Inicio » 2012 » Noviembre » 30 » Creating and Reading Cookies ASP.NET, VB.NET
8:37 PM
Creating and Reading Cookies ASP.NET, VB.NET
Description

This describes how to create a cookie in an ASP.NET page and then read the cookie on another page.

 

Building the Cookie

Dim c As New System.Web.HttpCookie("mycookie", "my cookie value")
c.Expires = Now.AddDays(2)
Response.Cookies.Add(c)

 

Reading the Cookie

If Not Request.Cookies("mycookie") Is Nothing Then
        Response.Write(Request.Cookies("mycookie").Value.ToString)
End If
Vistas: 392 | 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:23 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