Web Forms :: Master Page Load Event Firing Multiple Times

Jan 27, 2010

am using a master page, with children pages.

I am using forms authentication, and a session object to hold user information once the user is authenticated.

I am able to login and log out. I am able to log in and use the "remember me" functionality of the forms authentication.

When attempting to test the "remember me" functionality, the master page load event contains code to check the forms authentication & remember me, and retrieve user info from the database to automatically log the user in. This fires correctly, and the screens all load with the user successfuly logged in, and the users info is successfully stored in a session object.

Without touching anything on the screen, a moment passes and then the master page load event spontaneously fires again, Page.User.Identity.Name still contains the user name, however the session variable is now null, and throws an error.If I tell it to run past this error, it does, and the application continues to function normally, withthe session variables set correctly.

Its almost as if that second firing is ina different session, or something.

I have no problem posting code, but I have a profile class holding / handling the session communication, etc so it is a bit cumbersome.

View 3 Replies


Similar Messages:

Web Forms :: Page Load Event Of A Page Is Firing Two Times Instead Of One?

Nov 6, 2010

now a days i'm working on my project. In project there is a aspx page which is binded with a masterpage, the problem is that when i run the project in debugging mode i found that page load event of a page is firing two times instead of one along with masterpage page's page load event. This is crreating a problem in filling a grid. I searched through the internet for this problem some says that it may happen if u have any image whose src="" or due to some bad HTML's on page .But i've gone through the page it does not contain any image whose src="" .

[code]....

View 4 Replies

Web Forms :: Event Not Firing When Using Master Page

Aug 3, 2012

I'm using SelectedIndexChanged on a gridview row to trigger an event which is working fine in a normal webform. But, when I included "master page", it's not triggering the same event.

everything is same except, I added MasterPageFile location & removed FORM tag.

ASP code

<%@ page title="" language="C" masterpagefile="~/site.master codebehind="test.aspx.cs" inherits="Main.test" enableEventValidation="false"

autoeventwireup="true"%>
<asp:content ID="content1" contentplaceholderid="headcontent" runat="server">
<link href="styles/CS1.css" rel="stylesheet" type="text/css"/>
<asp:content/>
<asp:content ID="content2" contentplaceholderid="maincontent" runat="server">

[CODE]...

View 1 Replies

Web Forms :: Master Page Event Not Firing On Remote Web Server

May 18, 2010

I have a master page with a login box on it. Inside the login box is a button -

[Code]....

NOW ... On my local dev machine this code works fine. The control fires the event and everything is how it should be. When I run this site on a remote web server (tried two of them - both IIS7 running on 2008 R2) the event is never called. I added some logging to see what is happening and the PostBack event on the Master Page does not happen when the button is clicked - the page is just reloaded.

View 4 Replies

Web Forms :: Button_click Event Not Firing On Control On First Page Load?

Aug 26, 2010

I have a page with in a master page. This page has a user control with a text box and a button. I also have another button on the page. As the page first loads the button_click event on both the controls does not fire when clicking the buttons. I also have an event on the enter key on the text box. This event fires which causes a post back. After post back now my button_click event fire. The button_click event does not fire on the first page_load.

View 2 Replies

Web Forms :: Menu In Top Level Master Page Not Firing MenuItemClick Event?

May 4, 2010

I have a fairly complex web app which has two levels of master page. The top level provides a nav bar constructed from a Menu control across the top of the page. Second level master pages provide menus down the side. It all works well.

On both Menu controls, I need to handle the MenuItemClick event. This works fine on the Menu controls on the second-level master pages. However, the Menu on the top level master does not raise the event at all.

This web site makes extensive use of Ajax and the top-level master page contains the ScriptManager. Before I go to all the work of creating a much simpler test site, why the Menu control is not raising the MenuItemClick event?

Here is the markup for the Menu in the top-level master:

[Code]....

Here is the MenuItemClick event handler:

[Code]....

The logging call in the event handler never gets called. Equivalent code in the Menu on the second-level master does get called.

View 2 Replies

Event Of Master Page Not Firing

Jul 23, 2010

I put a break point at the protected void Page_Load(object sender, EventArgs e) method of my master page, but when i start the site it does not hit that break point.

Why is the event not firing? I would like to use this event along with others such as the Init event in order to check to see if the session has expired everytime a page loads...

View 4 Replies

AJAX :: Event Handler Not Firing Using Master Page

Jul 30, 2010

I have the following Master Page

[Code]....

Which is used in the following Page

[Code]....

With the following code behind

[Code]....

The trouble is while the event handler for the btnSearch fires, the same can not be said for the btnSave handler.

Anyone see what obvious thing I have missed.

View 1 Replies

Master Page And Content Page Event Firing Sequence?

Aug 22, 2010

When master page event fires, content page events are fired first,

is there any content page event that fires after the master page events.

View 1 Replies

Forms Data Controls :: Hierarchical GridView And Payment Button Firing Multiple Times

Feb 23, 2011

I have developed an application using Visual Studio 2008. I have a hirerchical gridview and on every row i have a "Payment" button which actually inserts a payment entry in database. Here is the sample screen of that gridview so u have an idea what i am doing. Problem is that whenever user pressed the button of "PAYMENT" it is inserting multiple records in database..it should only fire once and i am failed to understand why its firing multiple times. Refer this link for my payment screen: [URL]

[Code]....

My code behind--------------------

[Code]....

View 3 Replies

Javascript - Click() Firing Multiple Times?

Aug 11, 2010

I am using a document.getElementById("val").click() to invoke a click event, but it keeps firing multiple times.

Here I add the eventHandler

try {
//add mousedown event handler to navigation buttons
addEventHandler(oPrevArrow, "mousedown", handlePrevDayClick);
addEventHandler(oNextArrow, "mousedown", handleNextDayClick);
addEventHandler(oLogout, "mousedown", handleLogoutClick);
}
catch (err) {
}

In the click event i am performing a "auto click"

function handleNextDayClick(e) {
e = e || window.event;
stopEvent(e);
document.getElementById("btn_nextday").click();
}

NB: the button that is auto-clicked calls a method in the ASP.NET Code-Behind

View 2 Replies

C# - Facebook Iframe Application ,with Master Page, Doesn't Firing OnSelectedIndexChanged Event

Jun 30, 2010

this is my radio button list:

[code]....

this is the code behind:

[code]....

View 1 Replies

Custom Server Controls :: Databound Event Firing On Every Page Load In UserControl?

Feb 11, 2011

I have a DetailsView control bound to an ObjectDataSource within a User Control (.ascx). It appears that the DetailsView.OnDataBound event is being fired on every page load or postback.

I do not see this behavior with a similiar DetailsView directly placed on an aspx page.

View 1 Replies

AJAX :: Page Load Event Is Not Firing While Click On Back Button Of Internet?

Nov 4, 2010

I am also facing some issues with Back Button of Internet Browser as well. Actully Page Load event of my page is not firing when i click on Back Button of Internet.

View 1 Replies

Forms Data Controls :: Load The Same UserControl Multiple Times?

Jan 27, 2011

I have a simple UserControl that I've created that simply allows a user to enter the date. For the time being, it has a single Textbox with ID="tbDate". I am trying to dynamically add this control multiple times via (for example) `placeholder.Controls.Add(LoadControl())` but am receiving the error "An entry with the same key already exists". I could, perhaps, change the ID of the elements but then it would be difficult to grab the value entered by the user.

View 3 Replies

Web Forms :: Dynamically Control "Click" Event Is Firing Only In Page Load?

Feb 6, 2011

Below dynamically control "Click" event is firing only this is in page load event, i want this fire in btton click event, how its possible?

[code]....

View 1 Replies

Web Forms :: When Load The Form / Combobox SelectedIndexChanged Event Is Firing Automatically

Feb 17, 2011

I am using 2 combobox , In form_load event i am loading the combobox using dataset and In selectedIndexChanged event of the combobx1 we have to load combobox2

I am having a problem that when i load the form, combobox selectedIndexChanged event is firing automatically So how can i avoid this.

I understand that if it's a web application then IsPostBack method will be useful, but what to do as it's a windows (desktop) application.

View 2 Replies

MVC :: Application_start Event Called Multiple Times In Application

Sep 15, 2010

In my MVC application ,I am updating my web.config at runtime through application_start event.So, ideally it should be done only when the application is started.BUT in MY mvc application the application_start event of global.asax is being called multiple
times , even when i have not restarted the application.

Its being repetadly called when i am calling different actions , so the webconfig is repetedly updating & making my application very very slow. what's the reason & how to handle this .

View 2 Replies

AJAX :: Change Event Triggered Multiple Times?

Mar 31, 2011

[Code]....

When the popup opens, the following code is run:

.....
if (window.attachEvent) {
$("#rblQuickPick").change(function () {
//ClickQuickPick();
alert("something changed!");
});
.....

ClickQuickPick() is the code I will eventually run, but I put in the Alert for testing.

The issue is that when the popup extender opens, and I click an item, I get the alert once. If I click another choice I get the alert twice. If I click another choice I get the alert three times, etc.

What is triggering the event to repeat, and how do I stop it?

View 1 Replies

Web Forms :: Login Page To Load 9 Times Each Time The Web App Is Called?

Feb 22, 2011

Using Forms authentication, for some reason my login page is called 9 times. it causes some browsers to show "too many redirects!". Even with no javascript and nothing in the page_load event, it is called 9 times.

View 2 Replies

Web Forms :: How To Load From Secondary (Derived) Master Page Controls In Page Load

Feb 25, 2010

I hv Declared two Master page one Is Base and Derived.. Base Page Load is working but when i hv written load controls in Derived Page Load Using C# it's not working..

View 3 Replies

Web Forms :: Make These As Alphabetical Also, Some Times Have To Load 1000 Records In A Page Which Is Difficult?

Feb 8, 2010

I have a data grid in which I have to display around 12,000 records. Even if I do paging it is difficult to display all the records. Is there any other control or something else so that I can display all these records. Even if I make these as alphabetical also, some times I have to load 1000 records in a page which is difficult.

View 2 Replies

Forms Data Controls :: Error In GridView Binding - Page Does Not Load - Times Out / Hangs?

May 20, 2010

I have the following datagrid

<asp:GridView ID="importedListGridView" runat="server" OnDataBinding="importedListGridView_DataBind"
Width="450" CssClass="GridAltItem" AutoGenerateColumns="False">
<RowStyle CssClass="GridItem"></RowStyle>

[code]...

View 2 Replies

Web Forms :: Page Load Not Firing

Dec 27, 2010

I'm sure this is an easy one, but when I'm not using a code behind, I can get the Literal to change to my default text, but when I am using the code behind to insert my code, it's acting as if the Page Load event doesn't fire off, and the default text ofText to display2 is still shown, when it should show test. Can anyone show me what I've done wrong?

CodeBehind Page

[Code]....

Code Page

[Code]....

View 8 Replies

Web Forms :: Page Load Firing Twice

Jan 21, 2011

[URL] and that is not my problem.

I have a page with some updatepanels and som jquery code. Within an updatepanel, I have some dropdownlists that are filled bases on its precedenting. Basic.

On other browser it works very well, but in IE the postback is fired twice, and my application doesn't works properly.

If i remove soem jquery scripts, it works well. But I can't see any explanation for that and I can't remove jquery code.

The jquery code dos a datepícker, autcomplete, inputmask and some calculation.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved