Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi How can I dynamically Hide/Show web-parts in asp.net. I am using this to doing same , but In this article they have hard coded roles on AuthorizationFilter attribute of control , instead I want roles should be assigned at runtime. I have also tried another alternate , I have declare variable 'roles' in .cs file and at runtime assigning values to roles variable( and using like AuthorizationFilter=<% #roles %> ) but it doesnt work for me as each time I am getting value for AuthorizationFilter as blank(if I am using Text=<% #roles %> on label then it displays its value but value does not assign to AuthorizationFilter). I have also tried

if (User.IsInRole("Admin"))
   Label2.Visible = true;


but it still display web part title inside web part zone.
Posted

1 solution

I guess you could use the LoginView[^] - there is a small example at the bottom of that page.

Best regards
Espen Harlinn
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900