
Hi there, I have an administrative website for my ussers where they can do several things, they are authentificated before they can view any page, and I have a link to the Metatraffic folder from a button that says "Stats"
i would like to bypass the login page of metatrffic since the usser has already loged in, by passing the neccessary information to Metatraffic since the usernames and passwords are the same I set up in my admin site to the ones in metatraffic.
Sincerely,
bypass login page or create session variable
Hi,
You can do this by setting two cookies. In ASP, this would look like this:
<%
Response.Cookies("metatraffic")("username") = "username"
Response.Cookies("metatraffic")("password") = "password"
%>
Replace username and password at the end in quotations with the appropriate username and password.