I have a requirement where I need to check if the user clicks the logout button in the Master page and skip a method in content page.Because that method has Response.End which causes the Response to stop in that method. Due to this the user is not getting logout of the application.

I Appreciate any help.

link|improve this question

42% accept rate
WTF. Why does your code-behind even have Response.End to begin with? – Phill Aug 2 '11 at 4:41
feedback

2 Answers

I think one of the very simple solution for your problem is when the user clicks logout button you redirect him to a logout page that handles the logout in the page load and redirect to the home page again.

link|improve this answer
feedback

Assuming your logout button is html submit button, you can check that by inspecting request pot data. For example,

if (null != Request.Form[YourButton.UniqueID])
{
   // YourButton is clicked
}

You can add a public method in your master page to do such check and access that in your page. For example, in master code behind

public partial class YourMasterPage : System.Web.UI.MasterPage
{
   public bool IsLogoutClicked()
   {
     return null != Request.Form[LogoutButton.UniqueID];
   }

   ...
}

And then in your content page,

if (((YourMasterPage)this.Master).IsLogoutClicked())
{
    ...
}

In case, you are using anchor or image for logout button then the best way is to set some hidden field using js and then check the value of hidden field in the page.

EDIT: Here's a utility method that checks the request data to decide if post-back has happened due to some server control (regardless of control type or regardless of button's UseSubmitBehavior property).

public const string POST_DATA_EVENT_TARGET = "__EVENTTARGET";
public const string POST_DATA_EVENT_ARGUMENT = "__EVENTARGUMENT";

/// <summary>
/// Returns wheather postback has happened due to the given control or not.
/// </summary>
public static bool IsPostBackDueToControl(Control control)
{
    var postData = HttpContext.Current.Request.Form;
    string postBackControlName = postData[POST_DATA_EVENT_TARGET];
    if (control.UniqueID == postBackControlName)
    {
        // This is control that has caused postback
        return true;
    }
    if (control is Button ||
        control is System.Web.UI.HtmlControls.HtmlInputButton)
    {
        // Check for button control, button name will be present in post data
        if (postData[control.UniqueID] != null)
        {
            return true;
        }
    }
    else if (control is ImageButton ||
        control is System.Web.UI.HtmlControls.HtmlInputImage)
    {
        // Check for image button, name.x & name.y are returned in post data
        if (postData[control.UniqueID + ".x"] != null)
        {
            return true;
        }
    }
    return false;
}
link|improve this answer
Thanks for the Reply. Logout button is ASP button and not an HTML button. – karthik k Aug 1 '11 at 8:02
1  
ASP.NET button always translate into html submit button - so above will be applicable - note the use of UniqueID property for server controls, for html buttons, you need to use name attribute instead. – VinayC Aug 1 '11 at 8:16
Hi I tried IsLogoutClicked() method in MasterPage.Although I am clicking on LogOut button Request.Form[LogoutButton.UniqueID] returns NULL always. – karthik k Aug 1 '11 at 10:38
Hi VinayC, Could you let me know where I am doing wrong. I followed the same procedure as above. But Request.Form[LogoutButton.UniqueID] always comes as NULL value. – karthik k Aug 1 '11 at 10:56
@karthik, check request data from tool such as fiddler. Or you can use VS debugger to inspect request.Form collection to see log-out button value is present or not. Make sure that button's UseSubmitBehavior property is true. BTW, see my edit for a generic method to know if post-back has happen due to some control. – VinayC Aug 2 '11 at 4:28
feedback

Your Answer

 
or
required, but never shown

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