Tamer_Ahmed Posted September 9, 2004 Posted September 9, 2004 hi all does anyone have an idea about how to make Asp read from asp.net cookies and asp.net read from asp cookie coz i have site contain asp pages and aspx and i want to make sing sign on Quote
*Gurus* Derek Stone Posted September 9, 2004 *Gurus* Posted September 9, 2004 Cookies are cookies are cookies. A cookie written from ASP.NET can be read from ASP/PHP/ColdFusion and vice versa. Each cookie has a name and values. All of those languages expose collection objects to read those values. Quote Posting Guidelines
TheWizardofInt Posted September 12, 2006 Posted September 12, 2006 Cookies are cookies are cookies. A cookie written from ASP.NET can be read from ASP/PHP/ColdFusion and vice versa. Each cookie has a name and values. All of those languages expose collection objects to read those values. However, as far as I can tell, the cookie is still specific to the domain, right? When I came here, for example, a new cookie appeared in my cookies folder called deywiz@www.dotnetforums[1].txt deywiz being my logged in name for this PC and the rest being this forum. I can open that with Notepad and see that its name is "bblastvisit" I can't then go into Studio and create a new web site, and do this: Dim sCookie As String Dim objASPCookie As System.Web.HttpCookie = Request.Cookies("bblastvisit") sCookie = objASPCookie.ToString Because objASPCookie will be equal to nothing Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.