All my ASP.NET 2.0 pages inherit from MyBasePage.

public abstract class MyBasePage : System.Web.UI.Page
{
   private bool _Test1;

   [Browsable(true), Description("Test description")]
   public virtual bool Test1
   { get { return _Test1; }
     set { _Test1 = value; }
   }
}

I'm using VS2005.  Everything I've read suggests that I should see a
property called 'Test1' on the Properties tab of the IDE and have
access to 'Test1' through IntelliSense in my inherited pages, but I
don't see it.  I get the IntelliSense bit in the code-behind, but I 
am
more interested in seeing it available in the <%@ Page %> directive 
so
that I can set it's value.

What am I missing?!  This has been driving me crazy for days now.

Thanks for any help.







 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/Microsofts_C_Sharp/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to