0
votes
3answers
12 views
How can I execute something between instantiation of the user control and OnInit call?
What is the simplest solution here?
0
votes
0answers
13 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 do …
2
votes
3answers
58 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' …
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 …
1
vote
3answers
123 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 s …
0
votes
1answer
31 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 …
0
votes
3answers
75 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 …
0
votes
4answers
68 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 …
1
vote
2answers
28 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 …
0
votes
2answers
110 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, b …
0
votes
1answer
53 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 diff …
0
votes
2answers
196 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 …
0
votes
1answer
37 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' …
2
votes
5answers
180 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="hidd …
0
votes
0answers
64 views
Jquery Cycle with thumb pager issue
Hi,
I'm trying to create a slideshow with the jquery cycle plugin. I'm trying to have it so that thumbs for the slide show are auto generated from the main images. I am also tryin …
