将项添加到webuser控件

时间:2014-01-29 10:41:03

标签: c# asp.net

我对员工角色中的所有用户都有一个webuser控件。然而,用户控件也有一些链接到其他页面。问题是,当学生登录时。他可以看到一些管理页面,我需要他只能查看不同的超链接。如何添加项目,以便学生只能看到他们自己的链接,而不是能够查看管理页面?

以下是我的代码

LoginView control = (LoginView)Master.FindControl("LoginView1");
var con= (StudentsPanel)control.FindControl("StudentsPanel");
if (con!= null)
{
//This is= where i need to load the new items and show them to a student
}

我需要更改StudentsPanel中的链接,因为它在面板中,我不希望他们查看链接,但发起新链接。谢谢

1 个答案:

答案 0 :(得分:0)

为什么要“修改”链接?有两个面板,一个用于管理员,一个用于学生..并且根据谁登录,隐藏一个面板?