Tagged Questions

1
vote
1answer
40 views

The page lifecycle for controls(order contructed from a page)

Ok, I have not been able to really find an answer to this on the internet.. Maybe someone here can help me. For example, lets say I have a page and 2 custom controls on that page. During what event …
2
votes
3answers
137 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 …
0
votes
2answers
67 views

What if you want webpart communication before Page_Load?

Hi, I am needing to create some dynamic controls at Page_Load in the consumer webpart. In the Provider webpart I did some hacking and got it so I could get a controls value before viewstate is loaded …
0
votes
3answers
100 views

Asp.net pagelifecycle page_loadComplete

In my web application I load user controls in the page_loadComplete event. This works fine, however when a button is clicked in a user control, the click event is never fired. Does this has something …
0
votes
3answers
15 views
0
votes
2answers
165 views

Button click event called again when page is refreshed using F5

Hi friends, I found that if you press F5 or refresh from browser window, the last event fires again. For ex. I have clicked on a button the button event is carried out normally, but if i press F5 …
0
votes
2answers
38 views

How to figure out if other controls are constructed before OnInit

Hi, I'm making a custom control. Basically what I'm looking for is a OnPreInit event in custom controls. I basically need to know that all of the controls that will be loaded of type MyCustomControl …
0
votes
4answers
72 views

Is it possible to prevent a request from going to the page?

This might be really hacky, but I'm beginning to get desperate Is it possible to prevent a request from actually hitting the actual page...ie, can I write something in Application_BeginRequest that …
1
vote
3answers
144 views

ASP.Net (Web-forms) Page Lifecycle Problem - distinguishing between form loading, datapaging and command events.

I'm working on a sortable listview with data-paging. I've got the listview and paging working fine, but I'm struggling with with the sorting. The sorting in itself is fine; I can sort by a particular …
2
votes
5answers
222 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" …
1
vote
2answers
33 views

How can I manage a asp.net page in different states using an enum

All I am having with what appears to be a ASP.NET page life cycle issue. I currently have a user control embedded into my page. Now depending on the options chosen from the menu item list, the page …
3
votes
4answers
542 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 …
1
vote
8answers
307 views

ASP.NET request lifecycle confusion

I am new to C# and .Net and am coming from a Java background. I am trying to get my head around the .NET way of doing web applications and am not having much luck. I want to build an application to …
0
votes
1answer
46 views

Databinding problems with postback

Hey, I've two issues currently preventing me from finishing two projects properly. I'll put them both here as I believe they're connected to the asp.net page lifecycle, but I can't find a way around …
0
votes
1answer
77 views

Accessing ClientID breaks the postback…

Sometimes I do despair when working with ASP.Net - another problem that shouldn't be! On the web form there is an ASP table. In the ASP table there is a user control which I am making some changes …

1 2 3 4 5 next
15 30 50 per page