 |
|
|
 |
|
 |
First:
This article offers nothing more than excert from MSDN.
Second: YOU DON'T TEST COOKIES BY BROWSER TYPE!
They should only be tested by redirect. ( I would not even trust ASPSessionID )
Look at 15seconds.
|
|
|
|
 |
|
 |
Thanks for your estimates!!!
PLEASE GIVE ME THE MSDN PATH WHERE YOU KNOW EXIST THIS ...
|
|
|
|
 |
|
 |
http://msdn.microsoft.com/library/psdk/iisref/vbob87j9.htm should have some more _interesting_ info regarding cookies.
|
|
|
|
 |
|
 |
Who are you Brian!?!
Give me your email address, becuase your address from forum is wrong!?!
You are a hidden user? Why you not publish your correct email addres? BE HONEST !!
|
|
|
|
 |
|
 |
1) Do a search on www.15seconds.com and you will find various proper techniques.....
2) I do want not post my email: after posting one small article at codeguru I recieved 7 calls from headhunters.
3) I don't play ASP games. Most of my code is mixture of high performance ISAPI + COM + ASP ( don't care for cookies, my code will work either way ).
|
|
|
|
 |
|
 |
1) I browse into www.15seconds.com, is cool.
What is your binding with this site? You maintain this?
2) Ok, it is your choice.
3) Such, I don’t play ASP games. I’m working with USA Company, which develops a software product that manages Microsoft Exchange Server. I’m not beginner in ASP, and my code is a mixture of COM + ASP. This is my first project that I post into a free-code site, and I was worked 4 hours at it. I want test these free-code sites.
I hope we have a great collaboration in the future…
Thanks, Iulian ….
|
|
|
|
 |
|
 |
Dude, I hope you aren't proofreading anything. Or should I say:
In hopes, proofreading I hope you are not.
Teach you I will.
Learn you must.
|
|
|
|
 |
|
 |
You're a rude intolerant idiot. Go away.
|
|
|
|
 |
|
 |
Yup, agreed. Rude and ignorant. Grow to be a man soon he will.
|
|
|
|
 |
|
 |
Hi Iulian.
With using
server.CreateObject("MSWC.BrowserType")
blnSupportCookies = objBrowserCapabilities.cookies
you only know that the browser principaly support cookies but you don't know if they are enabled or not.
I would suggest additionaly testing e.g. via a session varaible. If IIS is able to place the sessionid in a cookie and therefor be able to read the session variable on a redirected page again, the cookies are realy available.
Kindest regards, Tom.
|
|
|
|
 |
|
 |
No, you have to test it in a real cookie, not just a session.
Why use a session, when you want to test for a cookie? Set a cookie on one page and read it on another to find out, whether cookies are allowed
|
|
|
|
 |
|
 |
>No, you have to test it in a real cookie, not just a
>session.
If cookies are disabled you won't get the value you have written into a session variable back when asking for it on another page.
I agree that writing directly into a cookie is more abvious to get the wanted result, but using session variables will work also.
|
|
|
|
 |
|
 |
No again
Since IE5 distinguishes between Enabling/Disabling of temporary Cookies (i.e. Sessions) and permanent Cookies (i.e. Cookies), you won't have the same result
|
|
|
|
 |
|
 |
Ok, this point goes to you :-
|
|
|
|
 |
|
 |
Before, thanks for your interesting about my code.
So, you was tested the project with a browser that has disabling cookies? Please do it with IE and Netscape. The result is, the cookie was write and after read the cookie was deleted. So, I was focused to the cookies not to browser capabilities … .
Thanks,
Iulian Iuga.
|
|
|
|
 |