I'm not really sure I understand exactly what you mean but I'll try anyway.
If you want to show links to certain members based on their name you could assign their login-name or some other login-information to a session that remains until they log out.
If your login-table is named tableLogin and your recordset for checking the login-names are named objRecordSet the script could look like this:
Code:
If not tableLogin.EOF Then
Session("name") = objRecordSet("username")
End If
On the page were you want to display or not display a certain link you write
Code:
If Session("name")="Mike" Then
Response.Write("<a href=""car.html"">car</a>")
End If
If Session("name")="Jane" Then
Response.Write("<a href=""car.html"">car</a>")
Response.Write("<a href=""car.html"">car</a>")
End If
I think it would be easier to give each user a userlevel, so you have a column in your table called userlevel. Then you can easily create If-statements on your pages so the users with a certain userlevel only can see the links you want them to.