Ask a Question related to ASP.NET Security, Design and Development.
-
Doug Bahr #1
Custom Permission and Declarative support
Please forgive if this question has been answered a million times before, as
I have seen many requests for help on this issues but I have not seen any
closer on the issue...
I have a custom Permission as follows
public sealed class RightsPermission : System.Security.IPermission,
System.Security.Permissions.IUnrestrictedPermissio n,
System.Security.ISecurityEncodable,
System.Runtime.Serialization.ISerializable
{
}
and a matching Attribute
[AttributeUsageAttribute(AttributeTargets.Class |
AttributeTargets.Method,AllowMultiple = false)]
[SerializableAttribute]
public sealed class RightsPermissionAttribute :
System.Security.Permissions.SecurityAttribute
{
}
I can imperatively use the permission, but when I try and use it
declaratively, the runtime seems to ignore
it completely and act as if the permission attribute check does not exist.
Please help!
Doug Bahr Guest
-
Custom IPrincipal and declarative security checking
download http://www.pluralsight.com/toolcontent/show_pipeline.zip put the ashx file in a web app and run it through your browser - you'll see the... -
Custom HttpHandlers and Declarative Security
Hello All, I am using maverick.net (a framework based around a custom httphandler in ASP.NET) and I'm trying to integrate declarative security... -
Custom Webcontrols, VS EDI support and intellisense?
Hi All I have been working on some custom webcontrols. Among other things I have extended the datagrid with a few things Everything is working... -
Custom RadioButtonList with Attribute support for ListItem
I found the listitem class was sealed, and can't get tooltips for radio button in a radionbuttonlist, apparently this is by design.. ... -
Custom collection design time support
Hi Everyone, I'm having problems implementing design time support for a custom collection in a custom web control. I have managed to get it to...



Reply With Quote

