Page view counter

Browse by Tags

Related Posts

  • do we need to implement all the methods of an interface?

    Hi all, While implementing an interface we need to implement all the methods of an interface otherwise the class becomes an abstract class . What if there is an interface containing 30 methods but we do not require all the methods to be implemented, then in this case what should we do to prevent the...
    Posted to C# (Forum) by spillbean on 09-24-2008, 12:00 AM
    Filed under: inheritance, Interfaces, C# 2005
  • basepage inheritance (using reflection?)

    Hi there! I have a webapp where all pages inherit from a single basepage (configured in my web.config). This works fine. There are some pages however, that inherit from a different class using the inherit attribute in the page directive. This overwrites my web.config setting. The most viable solution...
    Posted to Master Pages, Themes and Navigation Controls (Forum) by Rinze on 09-18-2008, 12:00 AM
    Filed under: Basepage, Inheritance, Reflections
  • Inherit a gridview and show it within toolbox

    Hi All, My purpose is to inherit a gridview that will perform a click and mouse over effect on each row. The purposed is achieved and I'll be happy to share If someones want, although there a lot of posts about this issue. Since I want this calss to be generic, I want to be able to drag it from the...
    Posted to Custom Server Controls (Forum) by ferchen on 09-07-2008, 12:00 AM
    Filed under: inheritance, C#, grid view
  • Web service doesnt expose Base class public methods

    I have a class public class mustinherit Response public error as ErrorClass end class public class ResponseA inherits Response end class public class ResponseB inherits Response end class I cannot set my error object using Base class methods and have it returned! I can fudge it by having a shadows variable...
    Posted to XML Web Services (Forum) by nickpark on 09-06-2008, 12:00 AM
    Filed under: inheritance
  • c# inherits gridview, how to add to the toll box, appear in skins

    Hi All, My purpose is toi inherit a gridview that will perform a click and mouse over effect on each row. The purposed is achieved and I'll be happy to share If someones want, although there a lot of posts about this issue. Since I want this calss to be generic, I want to be able to drag it from...
    Posted to Data Presentation Controls (Forum) by ferchen on 09-04-2008, 12:00 AM
    Filed under: assembly, c#i, inheritance
  • Re: Different Methods of Getting Data to the View

    yeah, so you would create a class, such as: public class MyActionViewData { public List<string> List1{get;set;} public List<string> List2{get;set;} public List<Blob> Blobs{get;set;} } I usually call them ListViewData, EditViewData etc. depending on the action Then in your action you...
    Posted to ASP.NET MVC (Forum) by tgmdbm on 09-03-2008, 12:00 AM
    Filed under: hiding, indexer, inheritance
  • Entity Inheritance & ASP.NET Dynamic Data

    Hi all, here's my question. I have 2 entities InheritedEntity1 & InheritedEntity2 inheriting from BaseEntity. Those are persisted through a TPT technique. When I run the my ASP.NET Dynamic Data Site, on the main page with the menu showing all availlable Entity/Table(?) I only see the BaseEntity...
    Posted to ASP.NET Dynamic Data (Forum) by kdave on 09-03-2008, 12:00 AM
    Filed under: Inheritance
  • Will there be a light(er)weight ViewPage?

    For those that don't know, ViewPage inherits from our old friend: System.Web.UI.Page. The Page class is quite the mound of code!... with the obsolete things, async framework, ClientScript, postbacks framework,... the list goes on. My point here is that it doesn't seem that the System.Web.UI.Page...
    Posted to ASP.NET MVC (Forum) by theozco on 08-14-2008, 12:00 AM
    Filed under: inheritance, page, System.Web.UI.Page, viewpage
  • Inheritance between user controls

    hello everyone, I've 2 user control one named Parent.ascx and the other is Child.ascx public partial class Parent : System.Web.UI.UserControl { protected void Page_Load( object sender, EventArgs e) { TextBox1.Text = "hello world" ; } } public partial class Child : Parent { } inheritance...
    Posted to Web Forms (Forum) by Tamer_Ahmed81 on 06-18-2008, 12:00 AM
    Filed under: inheritance, usercontrol
  • Re: Interfaces and abstract base classes

    Hi you have to declare I1 methods but you mustn't implement their body. Try somthing like this: abstract class B1 { public abstract void b1(); } interface I1 { void i1m(); } abstract class B2 : B1, I1 { public abstract void i1m(); } class D1 : B2 { public override void b1() { } public override void...
    Posted to Architecture (Forum) by Wamba on 04-24-2008, 12:00 AM
    Filed under: Class Design, inheritance, interface, C#, approach, arcitecture
Page 1 of 3 (30 items) 1 2 3 Next >
Microsoft Communities