0
votes
3answers
58 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
2answers
32 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 …
0
votes
4answers
66 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 …
0
votes
2answers
72 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 …
1
vote
3answers
114 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
24 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 …
1
vote
2answers
25 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 …
2
votes
5answers
145 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
1answer
32 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' …
3
votes
4answers
356 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 …
0
votes
1answer
47 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
3answers
113 views
ASP.NET UserControl not being updated after event
I have a asp.net control that represents a table and a control that represents a row in the table. Each row contains a text field for a date and a button to submit the date entered …
0
votes
1answer
59 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 m …
1
vote
1answer
81 views
ASP.NET BasePage back referencing to concrete implementation
I have a page that is setup like this
public partial class _Default : ViewBasePage<EmployeePresenter, IEmployeeView>,
IEmployeeView
{
...
}
…
0
votes
0answers
46 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 …
