cannot access class?



I have a custom (derived) Page class called BasePage where I define a class
called ImgLink and it has a public constructor:

public class ImgLink{ publicImgLink(params...)}

From the Masterpage I instantiate a BasePage class to access the ImgLink
class as:

BasePage _basePage = (BasePage) this.Page;


Still, I cannot access the _basePage.ImgLink class... why is that?


.


Loading