Cookies en VB 6.0 Help me
Hello again
this time my question is this
thanks for the help this is the code to use but only I can read in the same form (Application)
Code:
---------------------------------------------------------------------------------
Private Declare Function InternetSetCookie Lib "wininet.dll" _
Alias "InternetSetCookieA" _
(ByVal lpszUrlName As String, _
ByVal lpszCookieName As String, _
ByVal lpszCookieData As String) As Boolean
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
'''To create
Dim Variable As Boolean
Variable = InternetSetCookie("http://equipo/valor.html", "DATO", Trim(Text1))
'''To read
Dim sCookieVal As String * 256
Dim bRet As Boolean
bRet = InternetGetCookie("http://equipo/valor.html", "DATO", sCookieVal, 255)
MsgBox sCookieVal
------------------------------------------------------------------------------------------------------
but the cookie is not created.
Re: Cookies en VB 6.0 Help me
Please use CODE tags when posting code.
Re: Cookies en VB 6.0 Help me
Help me fix it now please
Re: Cookies en VB 6.0 Help me
Need help typing into GOOGLE? INTERNETSETCOOKIE VB gives this:
http://support.microsoft.com/kb/196062
Re: Cookies en VB 6.0 Help me
very good data page but the problem is I can not find the path of the cookie that is created on my website as I can find it.
Re: Cookies en VB 6.0 Help me
Then it probably isn't saving a cookie. Did you try the sample? That creates and retrieves a cookie from IIS.