|
|
|
Click here to copy the following block | Private Declare Function InternetGetCookie Lib "wininet.dll" Alias _ "InternetGetCookieA" (ByVal lpszUrlName As String, _ ByVal lpszCookieName As String, ByVal lpszCookieData As String, _ lpdwSize As Long) As Boolean
Function GetCookies(ByVal URL As String, Optional CookieName As String) As _ String Dim buffer As String Dim length As Long length = 10240 buffer = Space$(length) If InternetGetCookie(URL, vbNullString, buffer, _ length) = 0 Then Exit Function buffer = Left$(buffer, length) If Len(CookieName) = 0 Then GetCookies = buffer Else Dim cookies() As String Dim i As Long, tmp As String cookies = Split(buffer, ";") For i = 0 To UBound(cookies) tmp = LTrim$(cookies(i)) If InStr(1, tmp, CookieName & "=", vbTextCompare) = 1 Then GetCookies = Mid$(tmp, Len(CookieName) + 2) Exit For End If Next End If End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|