Tagged Questions
The page-lifecycle tag has no wiki summary.
24
votes
4answers
9k views
What is the difference between Page.IsPostBack and Page.IsCallBack?
I've recently ran into some code that checks Page.IsCallBack but I wasn't sure how it is different from Page.IsPostBack. Can anyone enlighten me?
Edit: Are they mutually exclusive or can both occur ...
14
votes
6answers
2k views
What is the 'page lifecycle' of an ASP.NET WebForm?
I'm looking to get a more thorough understanding of the ASP.NET page lifecycle. I'm in the process of building custom form controls and have found my knowledge in this area to be lacking.
Are there ...
9
votes
5answers
283 views
Is there a function called anytime ANY page is loaded in your application?
I want to be able to run a script anytime ANY page is loaded in the application. Is there somewhere I can simply add this? Or do I have to add the code in every page load?
7
votes
4answers
670 views
ASP.NET- forcing child/container events to fire before parent onload?
I'm working on a questionnaire type application in which questions are stored in a database. Therefore, I create my controls dynamically on every Page.OnLoad.
This works like a charm and ViewState is ...
7
votes
4answers
2k views
What happens when I press browser BACK button?
Consider the scenario:
I visited a page of a website built using ASP.NET. The page is a simple aspx page containing ASP.NET server controls.
I clicked on a link which takes me to some other page on ...
7
votes
4answers
2k views
ASP.NET: What happens to code after Response.Redirect(…)?
Does Response.Redirect() cause the currently running method to abort? Or does code after Response.Redirect() execute also?
(That is, is it necessary to return/Exit Sub after a Response.Redirect?)
7
votes
6answers
497 views
Where should stuff be done in an ASP.NET page?
I'm very new to ASP.NET and, after beating my head on a few problems, I'm wondering if I'm doing things wrong (I've got a bad habit of doing that). I'm interested in learning about how ASP.NET ...
7
votes
4answers
4k views
In ASP.Net, during which page lifecycle event does viewstate get loaded?
I know it happens sometime before Load, but during what event exactly?
6
votes
5answers
160 views
What's the meaning of Web Page life-cycle?
I'm new to C# and ASP.NET. I hear a lot about application and/or web page life-cycle.
I want to know what's the meaning of this?
6
votes
3answers
276 views
ASMX equivalent of Page_Init?
I have some code I would like to execute very early in the lifecycle of a call to an ASMX function. For our ASPX pages, this code is in the Page_Init() function on a base class, from which all our ...
6
votes
5answers
7k views
ASP.NET page events - Button click event comes after GridView bind
My understanding of the order of page events is this:
Page : Load
Control : DataBind (for a GridView or whatever)
Control : Load
Control : Clicked (for a Button)
Page: ...
5
votes
1answer
247 views
Strange behavior of nullable Enum types
I am using Global.asax to perform logging at the end of each request via the Application_EndRequest event. However, I am seeing some odd behavior of certain values stored in the ...
5
votes
5answers
11k views
ASP.NET Repeater ItemDataBound happening AFTER PreRender event?
I have a repeater control on an ASP.NET 2.0 web form.
As I understanding it, all of the page's data-bound controls fire their binding events somewhere in between the Page_Load and the Page_PreRender ...
4
votes
1answer
87 views
Does calling a delegate defined with a signature (e.g.) Func<t,t> type excecute synchronously in ASP.NET?
On first examination it appears that it does. A quick examination of the call stack shows that the method passed to the delegate is executed as one would expect. However....
In calling the delegate ...
4
votes
2answers
79 views
Will ASP.NET Page Life Cycle run full course when connection was closed unexpectedly?
Will Asp.net run its full page life cycle although the remote connection was closed unexpectedly to a state that stream data cannot be send the client? It is a blank asp.net page with default values. ...
4
votes
5answers
135 views
Closing a conneciton in the “unload” method
I have inherited a web framework whereby the previous developer has opened and closed his database connections in the init/unload methods of the page life cycle. Essentially constructor is like this ...
4
votes
3answers
277 views
When is Control.UniqueId created?
Does anybody know when a control's UniqueId is assigned?
Right now I've got some code in my Page_Init that is based off the UniqueId. However, depending on some business logic, I might need to ...
4
votes
2answers
1k views
Difference with creating and adding controls in PreInit Init
There's tons of info on the web about the ASP.NET life cycle, but i can't seem to figure out when to dynamically add controls to the page.
In general there are two situations; an aspx page with a ...
4
votes
4answers
246 views
Have I completely misunderstood ASP.Net AJAX (Update Panel)?
I've this I may have misunderstood how AJAX works. Can someone shed some light on the following simplified scenario:
I have a asp.net web application. On a page there is a user control inside an ...
4
votes
2answers
178 views
What is the advantage of using HttpContext over HttpApplication?
What is the advantage of intercepting a request for an ASP.Net application at the HttpContext level rather than waiting for the request to be processed by the HttpApplication pipeline?
4
votes
1answer
107 views
How long will an ASP.NET MVC application run
I wonder how long will an ASP.NET (MVC) application run, when no new requests come in? Lets say I'm using an IOC Container ans have a Singleton Object serving to the clients. As far as I know it will ...
4
votes
3answers
4k views
Multiple controls with the same ID 'add0' were found. FindControl requires that controls have unique IDs
Previously Called: How to deal with dynamically created controls under load in aspx
in response to a question below: the information required to determine which controls to restore is contained in a ...
4
votes
10answers
2k views
Is it acceptable to keep a db connection open for the life of the page?
Everybody knows that you should close a connection immediately after you finish using it.
Due to a flaw in my domain object model design, I've had to leave the connection open for the full page life ...
4
votes
2answers
442 views
On which Page life cycle are the Client IDs generated?
i am programatically adding Webcontrols in to a User Control i am also adding a javascript event passing the controlID as a parameter but the clientID is the one i assigned a it does not contain the ...
4
votes
10answers
1k views
What do you do when you can't use ViewState?
I have a rather complex page that dynamically builds user controls inside of a repeater. This repeater must be bound during the Init page event before ViewState is initialized or the dynamically ...
3
votes
2answers
874 views
C# Clear Session
Question #1
I want to know when am I supposed to use:
Session.Abandon() // When I use this during tracing and after calling it- I find the session still has a value.
And when am I supposed to use ...
3
votes
5answers
269 views
Event like .net's “Application_Start” and “Begin_Request” for java/tomcat/JSP?
Is there a way to attach to events like asp.net's "Application_Start" and "Begin_Request" in Java/Tomcat/JSP web projects? I would really rather not use JSF or an extra framework(Spring, Struts). I do ...
3
votes
3answers
991 views
When to override OnError?
I'm looking into re-working and simplifying our error handling in an application I support. We currently have all of our pages inheriting from a base class we created, which in turn obviously ...
3
votes
3answers
152 views
Is there an easy way of obtaining the total page response time in ASP.Net?
commonly on say PHP or other web frameworks getting the total response time is easy, just start the timer at the top of the file and stop it at the end.
In ASP.Net there is the whole Page Lifecycle ...
3
votes
1answer
399 views
Under ASP.Net MVC v1, is Page_Load called?
Stupid Monday morning basic/noob question...
Is Page_Load generally called for an ASP.Net MVC app?
We just have one page, Default.aspx.cs - which only seems to be called for / and not for any ...
3
votes
4answers
4k views
Asp.Net - page refresh(F5) do not restore the initial value of TextBox
this is the simple code:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
txt.Text = "Original";
}
}
first load. text box state is "Original".
manually ...
3
votes
1answer
512 views
What is the practical difference between Response.Write and <%= %>?
I've run into an issue where a third-party component appears to be interfering with Response.Write and causing any content within Response.Write("") to render before any of the other html. For ...
3
votes
3answers
2k views
Alternatives to System.web.ui.page
I have an ASP.Net application and I've noticed through using profilers that there is a sizable amount of processing that happens before my page even runs. In my application, we don't used viewstate, ...
3
votes
2answers
912 views
Do I need to unsubscribe from (manually subscribed to) events in asp.net?
Do the same best practis rules regarding subscribing/unsubscribing to events apply in asp.net?
I know it might seem like a silly question, but when I think about it, I have never really seen any code ...
2
votes
2answers
77 views
Web forms UserControls - LoadControl in pre-init or page_load?
In the MSDN page lifecycle reference it states that the pre-init is used to "Create or re-create dynamic controls."
However, elsewhere on MSDN, an example implies that a dynamic user control should ...
2
votes
2answers
44 views
ASP.Net LifeCycle and Database Update order
I have been reading about the Page LifeCycle. I understand the LifeCycle, however, it's not clear on what to do, and when to do it. The problem is I use Page_Load to get database values, and set form ...
2
votes
2answers
50 views
Best place to check conditions and redirect
What is the best part of the page lifecycle to check if a condition is true and redirect away from the page that is load if it is. In this case i am checking if the user has set his/her account ...
2
votes
1answer
117 views
The equivalent to onResume() in Windows Phone 7
I'm looking for some app life cycle help from the wp7 experts. My app has a refresh step in a specific page but I only want to launch this when the user brings the app to life from the background.
...
2
votes
2answers
76 views
How do you make advanced interactive asp.net serverside controls with jquery?
I'm having a hard time wrapping my head around how to merge jQury / clientside javascript and asp.net and the whole page life cycle model. Lets take a concrete example.
I have the following 3 lists, ...
2
votes
1answer
123 views
ViewStateUserKey sometimes doesn't validate
I have an application in ASP.NET that uses forms authentication. It has the following code.
if (User.Identity.IsAuthenticated)
ViewStateUserKey = User.Identity.Name;
Stepping through I see ...
2
votes
2answers
638 views
Page_Load vs OnLoad
Why DisplayUsers(); doesn't work?
My base page is:
public class adminPage : System.Web.UI.Page
{
protected override void OnLoad(EventArgs e)
{
if (User.Identity.IsAuthenticated == ...
2
votes
5answers
463 views
How to subscribe to Page Events in Visual Studio 2008 IDE
IMPORTANT Can any body solve this one ?How to create page's Init, Load, PreRender etc. event handlers in VS 2008? When we double click on the page, it will create Page_Load event. How to create othere ...
2
votes
1answer
423 views
JSF - Question about Lifecycle
I was reading an article today about Lifecycle on JSF.
I have some trouble to understand these points :
1 - Phase 3 :Process validations - This is the phase in which the component may validate their ...
2
votes
3answers
430 views
Capturing ASP.Net Server Execution time without Network Latency
I need to capture the amount of time that ASP.net takes to execute each page request in my application, but I need to exclude any network latency. I am currently capturing render times by using the ...
2
votes
1answer
272 views
Add stylesheet link to dynamically created page object
I'm creating a Page object and adding a control to it for printing purposes. The code works, however I can not find a way to add a stylesheet link to the header. In the code I pasted I'm trying to ...
2
votes
2answers
171 views
Intercept Page object creation to hook up events
I'm looking for a way to intercept the ASP.NET processing pipeline in such a way to be able to register event handlers to all events on the Page class. The reason is, I need to maintain a ...
2
votes
1answer
723 views
Page_PreInit not called?
Im running an ASP.NET 4.0 project.
The .aspx page has AutoEventWireup="true" set in the header.
Although OnPreInit is called, Page_PreInit is not? Can anyone suggest what is wrong?
protected void ...
2
votes
2answers
93 views
Need to upload file, and use it in the pre-init event
As it states, I need to upload a file, and then use it in the pre_init event of a second page. Server lifecycle prevents this (as pre_init happens before the event handlers), that's fine, so the only ...
2
votes
3answers
264 views
Get state of ASP.NET page life cycle
I need the following functionality in my method: if the method is called before OnLoad event of ASP.NET life cycle throw an exception else continue execution of the method.
I was thinking of ...
2
votes
3answers
445 views
ASP.NET/JavaScript - Script Registration/Redirection Problem
My page has a submit button on it (server-side button).
Here's my code for the click event:
protected void SubmitButton_Click(object sender, EventArgs e)
{
db.SaveSomething();
...