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...
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)...
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)...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.