If I understand your question, you could try something like this:
In your code beside add a property like:
private bool _UserCanEdit = false;
protected bool UserCanEdit
{
get { return _UserCanEdit; }
set { _UserCanEdit = value; }
}
In your pages Page_Init event handler:
protected void Page_Init(object sender, EventArgs e)
{
this.UserCanEdit = this.Page.User.Identity.IsAuthenticated && (this.Page.User.IsInRole("Administrators") || this.Page.User.IsInRole("Developers"));
}
Then throughout the code beside you can use it to restrict access to controls, visibility of controls, etc.
btnSaveResults.Enabled = UserCanEdit;
or
lbtnDeleteImage.Visible = UserCanEdit;
or
if (UserCanEdit)
{
....
}
else
{
....
}
