
July 26th, 2000, 04:32 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 23
|
|
|
<i><b>Originally posted by : lm (lana.makarova@kline.com)</b></i><br />I found couple of answers for you on another message board:<br />1. You can use BrowserCap module to see if the browser is cabable of using cookies, but that won't tell you if the user has disabled them. <br /> <br />You can always set a cookie and then read the value.<br /> <br />2.cookie.asp<br />************************************************** <%<br />Response.Expires=0<br />strCookie = Request.Cookies("COOKIE")<br />strTry = Request.QueryString("Try")<br />If IsNull(strCookie) OR ( Len(strCookie) = 0) Then<br />' Check to see if this is a redirect after the cookie' has been set If IsNull(strTry) OR (Len(strTry) = 0) Then<br />Response.Cookies("COOKIE") = "Set"<br />' Redirect to this page and try again.<br />Response.Redirect("cookie.asp?Try=Yes")<br />Else' User/Browser didn't accept cookies' Do something...<br />Response.Redirect("bad.asp")<br />End If<br /> <br />End If<br />%><br />************************************************** <br /> <br /><br /><br /><br />------------<br />Mike Ricard at 7/26/2000 8:08:39 AM<br /><br />Hi,<br /><br />Our web site works with cookies. Therefore, once somebody get onto our site, I need to know if his cookies are ENABLE or Not. <br /><br />Please tell me what to do.<br /><br />Bye !!<br />Mike<br />
|