Hi, I have a web site that contains Master Pages as follows:
ApplicationFolder
- Root.Master
- User Folder
- User.Master inherited from Root.Master
- Data.aspx inherited from User.Master In Root.Master Page
There is a ScriptManager control I put to Root.Master in case I can use updatepanel in any page.
There is LoginView which any user can have a menu to control settings.
In Data.aspx page there is a gridview in updatepanel whose UpdateMode is set to Conditional.Programmatically,I control update panel to update , there is no error for incoming data or data manipulation.
I also imply that there is no updatepanel on root pages.
My question is why Data.aspx (or any) page does not redirect to login page when user clicks on logout link in LoginView (which is in Master page) ??