inherits

  1. R

    Question is not allowed here because it does not extend class 'System.Web.UI.Page'

    this is my Income.aspx <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Income.aspx.vb" Inherits="iplapp.Income" %> <!DOCTYPE html> and here my Income.aspx.vb Namespace iplapp Public Class Income Inherits System.Web.UI.Page...
  2. E

    Question Sorting lists and inheritance

    I am trying to add sorting support to a series of related classes. Here is a simplified and generic version which should show how things are laid out. Class CItem Class CSpecific1 inherits CItem Class CSpecific2 inherits CItem Class CSpecific3 inherits CSpecific1 ... (several more like this)...
  3. N

    Question Trouble with the <profile> element's inherits attribute

    I have an ASP.NET Web Application in which I want to use profiles. In my Web.config file, I have the following: <profile enabled="true" inherits="mckeepottery_com.MPProfile" defaultProvider="McKeePotteryProfileProvider"> And I have a file in my application (which is named mckeepottery_com)...
  4. M

    Question Implementing Singleton in Parent Class

    Hi Everyone, Can anyone please guide me to implement singleton in a parent class. Infact what I want is that All the childs etc. should use same instance of the parent. I have implemented singleton, Changed the scope of parent class's constructor to "Protected". But in the application when ever...
Back
Top