Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Ken Fine #1
Sharing authorization/authentication between Classic ASP and ASP.NET pages?
I have an administrative website that I've built that needs to incorporate
both Classic ASP and ASP.NET pages. The site needs basic password protection
Can anyone suggest approaches for sharing a single login/authorization
scheme among both the ASP.NET and the classic ASP pages? I am a reasonably
experienced developer and am comfortable writing code. I just need to know
the right conceptual tack to take on this.
Alternately, if there are widgets out there that have already solved this
problem, I'm not averse to using/buying a solution.
Thanks for any pointers.
Ken Fine Guest
-
windows pass through authentication\authorization....
I have a requirement for a company intranet where they want to use a single sign-on with their windows 2003 domain (AD) so I was thinking of using... -
Secure authentication and authorization
Hello, I am new to asp.net and try to lean as much as can. I read all about from based authentication and cookie based authorization. In real... -
Authorization, Authentication in Web.config
Hi I am trying to ensure that users can only enter my Web service on a specific Login web page. I've amended Web.config so that authorization... -
Really confused about authorization/authentication methods in ASP.Net
I have been reading and reading the Microsoft best practices, articles on and on but still I can't figure out which method to chose to get started.... -
authentication and authorization in subfolders
Hello, I went through several posts and found out that it is only possible to have the authentication tag only at an app level but the... -
Julian Roberts #2
Re: Sharing authorization/authentication between Classic ASP and ASP.NET pages?
In your ASP page, try using the following code as a test
<%
for each cookie in Request.Cookies
Response.Write cookie & " - " & Request.Cookies(cookie) & "<br>"
next
%>
This will show all the cookies available. You could perhaps use one of them
for authentication.
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest



Reply With Quote

