An NDoc Documented Class Library

AspxPagePathAttribute Class

Set the base page path beginning with "~", such as "~/" or "~/Context". This attribute works together with AspxPageNamespaceAttribute, to map page path with their code-behind class. For example:

[assembly:AspxPagePath("~/Context")]
            [assembly:AspxPageNamespace("MyWeb.Pages")]
Will map: MyWeb.Pages.HomePage to ~/Context/Home.aspx MyWeb.Pages.Subdir.HelloWorldPage to ~/Context/Subdir/Home.aspx MyWeb.Pages.SiteMap to ~/Context/siteMap.aspx (Notice the "Page" postfix in class name is not required)

For a list of all members of this type, see AspxPagePathAttribute Members.

System.Object
   Attribute
      AspxPagePathAttribute

[Visual Basic]
Public Class AspxPagePathAttribute
    Inherits Attribute
[C#]
public class AspxPagePathAttribute : Attribute
[C++]
public __gc class AspxPagePathAttribute : public Attribute
[JScript]
public class AspxPagePathAttribute extends Attribute

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: AqDWeb.Attributes

Assembly: AqDWeb (in AqDWeb.dll)

See Also

AspxPagePathAttribute Members | AqDWeb.Attributes Namespace