When a page is requested on the web the server goes through a number of stages before sending back a response. Thus, the page life cycle is runs between request to response on the server.
0
votes
0answers
26 views
AuthenticateRequest not fire sometimes
When I press the F5 key several times , sometimes AuthenticateRequest not fired
void context_AuthenticateRequest(object sender, EventArgs e)
{
if (HttpContext.Current.User != null
...
0
votes
1answer
147 views
Adding CSS Class to client side hyperlink on code behind
I have a list of links :
<ul>
<li><a href="#">Aktuel</a></li>
<li><a href="#">Business</a></li>
<li><a ...
0
votes
4answers
229 views
How to prevent/stop event bubbling/propagation on page load in asp.net
I would like to know if I can prevent the event bubbling / propagation on the page load based on condition like:
protected override void OnLoad(EventArgs e)
{
// If the user press F5 from the ...
5
votes
2answers
100 views
When in the page lifecycle we can assign master page?
This question has been asked to me recently by my colleauge. I know ViewState is available between InitComplete and Preload events in LoadViewSate method. Similarly I want to know in which page ...
1
vote
1answer
87 views
Ddynamic GridView with TemplateFields - confusion in LifeCycle
I have a databound gridview that I create dynamically. The datasource returns an object based on the several DropDownLists (types of objects are different). Depending on the type of the object, the ...
1
vote
0answers
44 views
Why can Controls be found on an OnClick Event, but not in Page Load?
So I'm assuming this has something to do with the Page lifecycle, and maybe that Controls aren't yet bound on Page Load? Honestly I'm still learning about the ASP.NET Page lifecycle, when binding ...
0
votes
2answers
124 views
How to call a method only once in the first page load in the master page
I have the following case:
Page1.aspx this page has the master page master.aspx.
I have some code in the master page :
if (!Page.IsPostBack)
{
adjustServiceBar();
...
1
vote
1answer
93 views
When are setValue and setSubmittedValue called on UIComponent?
If I correctly combined the information contained in BalusC's great 2006 post http://balusc.blogspot.ch/2006/09/debug-jsf-lifecycle.html with Optimus Prime's even earlier post ...
1
vote
1answer
38 views
Where can I find an explanation/documentation of how each JSF component interacts with the page-lifecycle
Often when using a UI component of JSF or one of it's 3rd party component libraries, I have a hard time finding the documentation that explains where in the lifecycle the attributes of these tags will ...
3
votes
1answer
128 views
passing datatable object var as parameter in EL expression: how to make it robust?
In Core JavaServer Faces we find the following example for deleting rows out of a DataTable, where tableData.names is a list of Name objects:
<h:dataTable value="#{tableData.names}" var="name" ... ...
0
votes
0answers
35 views
How to put working buttons in a databound control
If I make my own custom control, I have to make sure I add all controls in the OnInit, or else postbacks won't work. ProcessPostData is called between Init() and Load(), so if I add my controls in ...
3
votes
2answers
474 views
jQuery Mobile -> Page Lifecycle?
Is there something like a lifecycle for jQuery Mobile pages? Like events that get fired on init, show, hide/back, or whatever events?!
Thanks in advance!
3
votes
4answers
370 views
Object reference not set to an instance of an object when tring to set the selection of a combo box
I have a text box and a RadComboBox like this :
<asp:TextBox ID="txt_inner_emp_num" runat="server" Width="60px"
ontextchanged="txt_inner_emp_num_TextChanged" ...
1
vote
0answers
264 views
ASP.NET Page / MasterPage life cycle
Trying to understand how after MasterPage render, the content of Page already exists in HtmlTextOutput?
ASP.NET, first calling Page.Render, then Page renders it's children controls and MasterPage is ...
0
votes
4answers
129 views
Set backcolor of a Gridview control, when it is enabled or disabled
In my gridview controls are enabled or disabled depending on user roles. I want to change the background color to yellow for enabled controls. I have tried to do it in RowCreated as below but all the ...
2
votes
3answers
47 views
Where is the best place to store multiple bodies of text (without database)
Say I have a control that is used on 10 different pages, and this control has a help icon. Each page should display it's own help text -which is about a paragraph each. Which help text to show is ...
1
vote
1answer
138 views
ViewState not reatining value on postback / In which stage of page lifecycle is viewstate to be used
I apologize in advance if the Title seems absurd. I am trying to understand the answer to both in a situation I am stuck in. I am creating user controls dynamically on a button click while keeping ...
1
vote
1answer
108 views
Search button on Master page retrieves info late in the page lifecycle
In my current design approach I am running into a case where I'm having to perform an extra Database read and Databind on controls, only to overwrite them later on in the page lifecycle. The end ...
2
votes
1answer
124 views
Inject HTML or scripts into MVC page lifecycle?
Is there a way to intercept the page lifecycle from an MVC controller and inject code somewhere on the page or DOM? I would like to add HTML, CSS, and JavaScript onto the page header and footer, but ...
1
vote
1answer
87 views
LoadControl in a static scriptmethod does not adhere page lifecycle (Init event is not raised)
I'm using a ScriptMethod which is called from Javascript. Inside this method I try to use LoadControl to programmatically get a control.
I'm adding this control to the current IHttpHandler ...
0
votes
1answer
48 views
Simulating page lifecycle in code
I have a custom Control on which I override the OnInit method.
Update
It seems I need to get the Init event through userControl.GetType().GetEvent("Init"). However the RaiseMethod property of the ...
0
votes
0answers
71 views
JSF value binding process
I'm using value binding to some attribute in my jsf component:
<t:myComponent booleanFlag="{bean.booleanFlag}"...>
The setter of this attribute is being called only when There is some ...
1
vote
1answer
56 views
When does the Instantiation stage of an ASP.NET page lifecycle occur? And what exactly is it?
I have read this page: Viewstate n page lifecycle and also ASP.NET page lifecycle . My questions are these:
1 - Instantiaton means that the code for the control hierarchy is CREATED, and then in ...
0
votes
1answer
195 views
Programmatically Assigning PagedControlID to DataPAger
So I am struggling with, what I believe is, more of a Page Lifecycle/ViewState issue. I have a page which hosts three ListView controls. Only one will be visible at any time. I want to use a single ...
1
vote
1answer
49 views
Method Order Between Parent and Inner UserControls
I'm working on a project that has an outer UserControl called Outer that does some logic to determine which inner UserControl to load statically in its code. There are several inner controls, let's ...
0
votes
3answers
137 views
Access asp.net page from a code behind class
This is for academic purposes, please no responses of "why would you want to do that"
If I have a page called Home.aspx and it has a code behind Home.aspx.cs.
In Home.aspx.cs I have some public ...
0
votes
2answers
380 views
ASP.NET page life cycle issue. Control ViewState in Page_InitComplete on postback
Our users will:
1.open one tab do some tasks
2.open another tab change customerId and do some other task
3.return to the previous tab and attempt to continue with the old customerId
The session state ...
0
votes
0answers
81 views
Postback status of an ASP.NET Page
I have to use Request.Form["__EVENTTARGET"] to understand the postback status of an ASP.NET page because of the structure of project.
However, when I refresh the page, Request.Form["__EVENTTARGET"] ...
0
votes
0answers
63 views
Page Lifecycle, how to run a combining function from User Controls and Page
I have a CSS and JS compression script which combines a list object of files on page load. I structure it thus: (just looking at CSS)
MasterPage:
The masterPage containers a default list for Common ...
0
votes
0answers
96 views
When does Global.asax run cache?
I have an ASP.NET website with global.asax. I'm doing VaryByCustom caching by overriding GetVaryByCustomString. It isn't going well.
I'm interested to know, in terms of Page life cycle, when does ...
0
votes
0answers
69 views
Textchanges only visible after postback
I have a method that changes the text of the controls on my site.
These changes should be visible right when the user loads the page.
But the changes are first visible after the next postback.
I ...
0
votes
1answer
167 views
Ntegrity Siteminder and ASP.NET execution pipeline/page lifecycle
I'm having trouble integrating SiteMinder and ASP.NET.
The observed behavior for a incoming request is:
Global.asax:Application_AuthenticateRequest runs
The SiteMinder WebAgent runs
My ...
1
vote
0answers
136 views
Selected values in custom control disappear on postback
I have a asp.NET web forms page with nested datalists. The inner datalist contains a custom control which contains a dropdownlist. The custom control is declared in page markup. All controls have ...
0
votes
1answer
374 views
Accessing session from static method called via AJAX
Ok, I'm a little stuck on this one. I think my problem lies with the life cycle of the page but I'm not sure nor am I sure how to fix the problem.
I have a static method that needs access to the ...
0
votes
1answer
80 views
Trying to get the HTML of a control in a IHttpHandler
I have created a class that implements IHttpHandler, and I need it to return the rendered HTML of a databound user control that I have made. While I can get this to work, it doens't work exactly as ...
0
votes
0answers
162 views
how to keep my run-time controls value through post-back?
I have table with only table heads In run-time generate and add rows of controls (dropdownlist-textbox-labels) to my table hen enter data in these controls and click save Click event code like:
for ...
0
votes
3answers
139 views
How is this explained with ASP.NET page life cycle?
I have the following code, which simply inserts a record into the database, based on some text fields and a dropdown. The dropdown gets bound in the Page Load Event.
protected void ...
2
votes
1answer
170 views
Page_PreInit and events
I have a question...if I have an asp:Button on my page, and I want that button, when clicked, to switch the masterpage, that would be impossible right?
Impossible because switching the masterpage ...
1
vote
1answer
371 views
ImageButton inside cell table doesn't work
If I create ImageButton dynamically and add this into table cell
TableRow tr = new TableRow();
TableCell tc = new TableCell();
ImageButton imagebutton= new ImageButton();
...
1
vote
0answers
243 views
ASP.Net C# SetFocus / Page Cycle - Confusing Error
Can anyone tell me why I would be getting the error in the below trace?
"SetFocus can only be called before and during PreRender."
The error message says that "SetFocus" must be called before or ...
0
votes
0answers
45 views
control where markup should appear on rendered page?
I am building a Extender control. This control derives from the normal Control. Its purpose is to inject some text before/after the specified target control. I imagine this to be similar to how the ...
0
votes
2answers
107 views
page life cycle make me confused?
i clicked abutton then depug enter page load before button click event
i want to check in page load if this button clicked
i used hiddenfield
and javascript function like
<script ...
0
votes
0answers
124 views
Accessing Calendar.VisibleDate BEFORE Day_Render
I'm attempting to mark the days on an ASP.Net Calendar control that are holidays with another color.
What I have:
protected void calmaincalendar_DayRender(object sender, DayRenderEventArgs e)
{
...
0
votes
4answers
347 views
ASP.NET - how does aspnet_isapi.dll construct page class
We all know that when a request for abc.aspx is received, the aspnet_isapi.dll works on it and calls the page's processrequest method. My question is how does it create instance of page class and how ...
2
votes
2answers
473 views
ASP.NET Hidden Field Persistence During Life Cycle
I feel like I may be overlooking a fundamental concept of the page life-cycle here and have been (either because I can't figure out the right keywords or it hasn't been asked) unable to locate an ...
0
votes
1answer
244 views
Need to access dynamic controls ids inside the update panels
I am populating dynamic controls inside the update panel. The steps are
Step 1: Dynamic controls are populated inside dynamic table like this which is inside panel
<asp:Panel ID="pnlShowDDF" ...
0
votes
1answer
168 views
Why add an additional event handler for Page.InitComplete?
I'm learning about Web Parts and in one point the tutorial says to do the following in Page_Init:
Page.InitComplete += new EventHandler(GenerateModeList);
The tutorial proceeds to define ...
0
votes
3answers
3k views
Check Session variable and Redirect to login page before page load
How can I check a variable and redirect to another page before the page loads using ASP.NET?
I'm aware of the life cycle, and PageInit() sounds like it would be right, but I can't seem to find ...
1
vote
0answers
23 views
verifying when a property is set for a custom control
I'm hoping there is a pattern for verifying when a property is set for a custom control in asp.net.
Considering that there is a page life cycle, we keep having issues where the control can get into ...
3
votes
1answer
987 views
Issues on dynamically change and switching the connectionString in web Config
I am trying to switch different databases for a web application at Run time.
Senario
We have one asp.net web application and different databases for different customers.I am trying to switch ...
