vote up 0 vote down star

How do i use overload in C#

I have a sample codes that goes like this

Namespace Test
Partial Class TestAccess
    Inherits BaseForm

    Dim db As New database
    Dim share As New ShareMethod

    Protected Overloads Overrides Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        MyBase.Page_Load(sender, e)

I tried using the converter, but keep getting error.

And my overload doesnt have any function, so do i still use .....+....

****UPDATED

Here is my codes for the program which i want to inherit

namespace CRRBaseForm

{

public partial class TAView : BaseForm
{
    protected override void Page_Load(object sender, EventArgs e)
    {
        if (Page.IsPostBack == false)
        {
            binddropdownlists();
        }
    }

currently nothing happens. but when i did this; it tells me that i need to overload:

    namespace CRRBaseForm
{

    public partial class TAView : BaseForm
    {
        protected override void Page_Load(object sender, EventArgs e)
        {
            if (Page.IsPostBack == false)
            {
                Page_Load(); //call from BaseForm
                binddropdownlists();
            }
        }

my baseform is as follow:

namespace CRRBaseForm
{

public partial class BaseForm : System.Web.UI.Page
{
    protected virtual void Page_Load(object sender, EventArgs e)
    {
        //Check if the Session Login id null
        if (Session["UserID"] == null)
        {...
...
...
flag

23% accept rate
What C# does the converter produce? – silky Sep 23 at 6:19
And what error are you getting? And what do you mean by "my overload doesn't have any function"? – Jon Skeet Sep 23 at 6:25
Is the Page_Load function marked with virtual keyword in BaseForm? – Darin Dimitrov Sep 23 at 6:30
Yes. in the baseform there is a keyword as follows: public partial class BaseForm : System.Web.UI.Page { protected virtual void Page_Load(object sender, EventArgs e) { //Check if the Session Login id null if (Session["UserID"] == null) {.... ..... ..... – Nana Sep 24 at 3:11
Updated my question – Nana Sep 24 at 3:11

1 Answer

vote up 1 vote down

In C#, it is like so:

protected override void Load (object sender, EventArgs ea)
{
}

Assuming a 'Load' virtual or abstract method in the parent class.

-- Edit

You've updated your question, and you have this:

Page_Load(); //call from BaseForm

That actually needs to be:

base.Page_Load(); //call from BaseForm

Otherwise it will just call itself recursively.

link|flag
You are missing a return type in your method signature. – Darin Dimitrov Sep 23 at 6:23
1  
@darin: Fixed. – Jon Skeet Sep 23 at 6:24
i tried but it didnt work. – Nana Sep 24 at 3:10
I've updated the post slightly, as you have a problem in the posted code; but the overriding should work. Please show the actual compilation error you are getting. – silky Sep 24 at 3:21
when i've done that, i have this error which is the same error. Dont quite understand the error though No overload for method 'Page_Load' takes '0' arguments – Nana Sep 24 at 3:29
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.