Andy:
> I am trying to use a Nscript to redirect users to there own private> home page. I am using the script below but when it redirects to the
> Url I get the below error message.
>
the reason that you are getting the error msg is that your script is failing.
a simpler script would be:
(note that I reversed the > and < so that the bot don't eat this)
>script language="NScript"<
on error resume next
authUser = Request("AUTH_USER")
if (authUser <> "") then
response.redirect "https://www.yourdomain.com/~" & authUser
else
response.redirect "http://www.yourdomain.com"
end if
>/SCRIPT<
<html>
<head>
<title></title>
</head>
<body>
<p>This page was intentionally left blank
<p><%=authUser%>
</body>
</html>
Joe Moore
Novell Support Connection Volunteer Sysop
http://just.fdisk-it.com
for an e-book on NetWare Enterprise Web Server,
see
http://www.caledonia.net/nesadmin.html
NO EMAIL PLEASE!!!!!