RE: Direct to wss site based on login by david
david
Tue Aug 16 15:18:06 CDT 2005
u may be able to use the content editor webpart and use asp to do a
response.redirect based on the credentials.
eg
<%
Dim gooduser, userid
userid = request.servervariables("LOGON_USER")
gooduser = "somedomain\username"
if userid = gooduser then
response.redirect("goodpage.asp")
end if
%>
"Bill Burke" wrote:
> I am wondering if I can redirect a user to a site based on thier login.
>
> Example:
> Customer logs in and is directed to site A
>
> employee logs in and is directed to Site B
>
> thx