Tagged Questions

0
votes
2answers
42 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
120 views

When should I call base methods of page events?

In ASP.NET, if I overrride a page lifecycle event, should I call its base method before or after doing my work? Should I even care? protected override void OnPreRender(EventArgs e) { // My code …
1
vote
1answer
21 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 …
0
votes
3answers
13 views
0
votes
0answers
17 views

Is it ok to manually call TrackViewState in the Page_Init Event?

I would like to add a querystring value to the viewstate in the Page_Init event, but since this event occurs before TrackViewState is called automatically by the page, the value does not get …
2
votes
3answers
101 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
35 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 …
1
vote
3answers
126 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 …
0
votes
3answers
78 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
4answers
70 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
2answers
29 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 …
0
votes
2answers
129 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
1answer
55 views

Web Methods works with html button but not asp:button

I'm am looking at the code in this article on Web methods and I've tried to implement it. The article works as designed but when I swap the HTML button for an asp:button I get different results. CODE …
0
votes
2answers
201 views

Button on click method entered on page refresh!

Hi, I have a .net 2.0 application and I can't work out why a button's onclick method is run on page refresh. The exact scenario when this happens is a checkbox is ticked against each item the button …
0
votes
1answer
42 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 …

1 2 3 4 5 next
15 30 50 per page