I'm trying to build my 1st NEW module for the portal starter kit, but I'm not sure what VS.NET is doing...it seems to be creating the wrong 'inherits from'
This is the beginning of my new module codebehind file
Public Class Charts
Inherits System.Web.UI.Page
.................................................................................
This is the beginning of an existing module codebehind (that works)
Namespace ASPNET.StarterKit.Portal
Public MustInherit Class Announcements
Inherits ASPNET.StarterKit.Portal.PortalModuleControl
....................................................................................
Any ideas on what the correct inherits statement should be for the new module?
Should i change 'Inherits System.Web.UI.Page' to 'Inherits ASPNET.StarterKit.Portal.PortalModuleControl' and/or do something else also?
Thanks,
Paul
K