how are you authenticating your users? - If you are using a database to store their userID and password, you could use a script like this to signify that they are authenticated: ----use your database connection then check the form data against the data in your admin table like: Dim myPW, username,mystatus username=request("username") myPW=request("myPW") Set RSlog = Server.CreateObject("ADODB.Recordset") RSlog.Open "Select * from Admin where username='"&myLogin&"' and password='"&myPW& "'", Conn, 2, 2 If not RSLog.eof or not RSLOG.eof then myStatus="IN" end if then lower in my page, where I want active links or not, I would code something like this: Response.Write ("<a href="yourURLorFilepath/" & RS("filename")& """>Link</a>") else response.write("link not available") end if Hope that helps. Happy coding
ublend