Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Make a link invisible on a frame

Status
Not open for further replies.

cmmrfrds

Programmer
Feb 13, 2000
4,690
US
I have a page with 2 frames. The left frame contains links that will bring up a page in the right frame. I would like to make the links in the left frame invisible until the user has logged into the system and I have validated their login. After the login, I would like to make the links visible. In Access I could use the field.visible = false or true. Is there something similar in ASP.

Thank you,
Jerry
 
I use UltraDeveloper 4, with that, there is a "show region" that bases your login "level" to show or not.

it uses this right prior to the region.

<% IF (Session(&quot;MM_UserAuthorization&quot;) = &quot;ADMIN&quot;) then %>

And after the region

<% End IF %>

Naturally your database needs to have the level defined. UD4 uses the MM_UserAuthorization when the individual logs in to pass their information along.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top