14
votes
4answers
1k 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 …
9
votes
6answers
797 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 …
7
votes
6answers
265 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 …
6
votes
4answers
883 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?
4
votes
4answers
310 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?)
4
votes
1answer
104 views
ASP.Net - Strange behavior of nullable types in Application_EndRequest
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 …
4
votes
3answers
3k 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: …
4
votes
2answers
180 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
846 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
4answers
509 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
3answers
402 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
11answers
692 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 …
2
votes
3answers
122 views
Add dynamic controls in ASP.NET, is there a difference between 1.1 and 2.0?
I am pretty sure back in the days of ASP.NET 1.0/1.1, controls created during runtime needs to be added before Page_Load event of the Page Lifecycle (i.e. inside Page_Init).
Here's one article by …
2
votes
5answers
213 views
hidden field is null on !IsPostBack and not null on IsPostBack
First I'll apologize for the unclear title of my question. I wasn't sure how to succinctly describe my problem in a title.
I have a hidden field in my .aspx
<input type="hidden" name="hid1" …
2
votes
1answer
161 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 …
