VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > Objective-C编程 >
  • vb.net 读写cookie

  1. 写cookie
  Dim JSONCookie As New HttpCookie("JSONDATA")
    JSONCookie.Expires = DateTime.Now.AddMinutes(480)
    JSONCookie.Value = cookiestr
 
    HttpContext.Current.Response.Cookies.Add(JSONCookie)
  • 1
  • 2
  • 3
  • 4
  • 5
  1. 读cookie
Dim Jsonstr As String = HttpContext.Current.Request.Cookies("JSONDATA").Value.ToString
  • 1

3.判断cookie 是否vb.net教程存在

If Request.Cookies("JSONDATA") Is Nothing Then
           
 End If
 


相关教程