up vote 0 down vote favorite
share [g+] share [fb]

I have a log out button on my main menu and I want it to run a method to log out. However I want to store this method in a separate class as a static method, since this code may be called from other locations too.

Compiler error message:

CS1061: 'ASP.adminpages_masterpages_adminsystem_master' does not contain a definition for 'ExtensionMethods' and no extension method 'ExtensionMethods' accepting a first argument of type 'ASP.adminpages_masterpages_adminsystem_master' could be found (are you missing a using directive or an assembly reference?)

My ExtensionMethods class:

namespace ExtensionMethods
{
    public static class MyExtensionMethods
    {
        public static void Logout(object sender, EventArgs e)
        {
               //Logout Code
        }
    }
}

My button:

<asp:LinkButton runat="server" OnClick="ExtensionMethods.MyExtensionMethods.Logout" Text="Log Out"></asp:LinkButton>

Ideas?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You need to handle the button-click at the code-behind and let that call your static method in other class.

    <asp:LinkButton id="button1" runat="server" 
       OnClick="LinkButton_Click" Text="Log Out"></asp:LinkButton>

Code-behind:

   void LinkButton_Click(Object sender, EventArgs e) 
   {
      ExtensionMethods.MyExtensionMethods.Logout(sender, e);
   }

Check the reference for more examples: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.linkbutton.click.aspx

link|improve this answer
It's not in the codebehind though, it's in a seperate class, so how would it find it? – SLC Oct 30 '09 at 9:38
@SLC: Ok, I've amended my answer – o.k.w Oct 30 '09 at 9:46
I was hoping to avoid this and link it directly, but if there is no other way, I'll do it like this, cheers. – SLC Oct 30 '09 at 9:48
@SLC: You might be able to do it by wiring up the event-handler for button click, but the wiring have to be done in the code-behind anyhow. So well.... the only alternative might be to create a custom linkbutton and implement your own click handler. Doubt so huh? – o.k.w Oct 30 '09 at 9:56
Simple is best, the simplest solution is what I tried, the 2nd simplest is the one you posted, so that's the one I'll use ;) – SLC Oct 30 '09 at 10:06
feedback

Your event handler should really be in the page class and not be static. It should be, ideally, protected but it can be public.

link|improve this answer
@Kieron: Both you and I misunderstood his question. The function to be triggered is outside the scope of the page. :) – o.k.w Oct 30 '09 at 10:30
feedback

public partial class Default3 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { //Response.Write("welcome" + Session["user"]);

    try
    {

        string visit = Request.Cookies["info"]["lastvist"] == null ? null : Request.Cookies["info"]["lastvist"].ToString();


        Label1.Text = ("welcome " + Session["user"] + "!! yew  last tym visit this site at :  " + visit);



    }
    catch (Exception)
    {
        Label1.Text = ("welcome " + Session["user"]);

    }
}

protected void LinkButton1_Click(object sender, EventArgs e)
{
    Session.Clear();
    Session.RemoveAll();
    Session.Abandon();
    Response.Redirect("Default.aspx");

}

}

can't resolve it when i press back button it goes again my home page :(

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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