active questions tagged page-lifecycle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:01:50Z http://stackoverflow.com/feeds/tag/page-lifecycle http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/924422/asp-net-request-lifecycle-confusion 1 ASP.NET request lifecycle confusion theringostarrs 2009-05-29T04:45:32Z 2009-12-02T05:17:19Z <p>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.</p> <p>I want to build an application to handle requests urls and write responses that return images. Having only used Java servlets in the web application field I am after some good resources and/or explanations on handling the request side of the application.</p> <p>How are requests handled? and with what Objects? What is the cycle? how do pages function around this?</p> <p>These are basic broad questions so if anyone knows of resources that covers them all thoroughly please let me know. What I have found so far has bits of information not the overall picture.</p> http://stackoverflow.com/questions/1608194/what-if-you-want-webpart-communication-before-pageload 0 What if you want webpart communication before Page_Load? earlz 2009-10-22T15:52:03Z 2009-11-30T23:10:58Z <p>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 in Page_Init. </p> <p>So basically what I want is for webparts to be able to communicate before Page_Load. </p> <pre><code>[ConnectionConsumer("FormRID Consumer","FormRIDConsumer")] public void InitializeProvider(MyControl.IFormRID provider) { theProvider = provider; FormRID = theProvider.FormRID; } </code></pre> <p>That method doesn't get called until after Page_Load. This is a big problem for me because my consumers Page_Load depends on FormRID being set and accurate. I can't move my Page_Load code into Page_LoadComplete either because I am needing to create dynamic controls with viewstate(viewstate isn't restored after Page_Load) </p> <p>So is there some work around I can use so that I can communicate before Page_Load. </p> http://stackoverflow.com/questions/547391/when-should-i-call-base-methods-of-page-events 0 When should I call base methods of page events? Serhat Özgel 2009-02-13T19:45:07Z 2009-11-30T18:16:19Z <p>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?</p> <pre><code>protected override void OnPreRender(EventArgs e) { // My code goes here base.OnPreRender(e); // Or here } </code></pre> <p><strong>Edit:</strong> By "should I care?" I meant "should I care if I am calling it before or after?". Sorry for confusion.</p> http://stackoverflow.com/questions/1785812/the-page-lifecycle-for-controlsorder-contructed-from-a-page 1 The page lifecycle for controls(order contructed from a page) earlz 2009-11-23T20:44:16Z 2009-11-23T21:14:29Z <p>Ok, I have not been able to really find an answer to this on the internet.. Maybe someone here can help me.</p> <p>For example, lets say I have a page and 2 custom controls on that page. During what event on page do these controls get constructed. When does their page_init get called? </p> <p>Also, for these 2 custom controls, do they both get constructed before either of the page_init events get called?</p> <p>I've done some testing with a debugger and such, but I'm wanting a definite answer to these questions. I'm not wanting to make code that works only sometimes.</p> http://stackoverflow.com/questions/1766228/how-can-i-execute-something-between-instantiation-of-the-user-control-and-oninit 0 How can I execute something between instantiation of the user control and OnInit call? thorn 2009-11-19T20:18:31Z 2009-11-19T22:47:34Z <p>What is the simplest solution here?</p> http://stackoverflow.com/questions/1708264/add-dynamic-controls-in-asp-net-is-there-a-difference-between-1-1-and-2-0 2 Add dynamic controls in ASP.NET, is there a difference between 1.1 and 2.0? o.k.w 2009-11-10T14:13:54Z 2009-11-10T15:12:51Z <p>I am pretty sure back in the days of ASP.NET 1.0/1.1, controls created during runtime needs to be added before <code>Page_Load</code> event of the <a href="http://msdn.microsoft.com/en-us/library/ms178472.aspx" rel="nofollow">Page Lifecycle</a> (i.e. inside <code>Page_Init</code>).</p> <p>Here's one article by Microsoft on it (for .NET 1.0/1.1):<br> <a href="http://support.microsoft.com/kb/317515" rel="nofollow">HOW TO: Dynamically Create Controls in ASP.NET</a>:</p> <blockquote> <p>Note When you create dynamic controls on a Web Form, you must create the controls and add them to the controls collection in either the Page_Init event handler or the Page_Load event handler. Otherwise, the controls may not behave as expected.</p> </blockquote> <p>However, in a few posts here, it seems like the above is not the case anymore. Controls added within <code>Page_Load</code> seems to be working for everyone else. Some of the posts include:<br> <a href="http://stackoverflow.com/questions/886664/creating-dynamic-control-in-asp-net">http://stackoverflow.com/questions/886664/creating-dynamic-control-in-asp-net</a><br> <a href="http://stackoverflow.com/questions/1708016/viewstate-utter-confusion">http://stackoverflow.com/questions/1708016/viewstate-utter-confusion</a> </p> <p>I've tried it myself and indeed it worked though I've not done enough test to fish out any unexpected behavior.</p> <p>So is <code>Page_Load</code> a safe stage to add dynamic controls? Or is it only for .NET 2.0 and above?</p> http://stackoverflow.com/questions/1618528/how-to-figure-out-if-other-controls-are-constructed-before-oninit 0 How to figure out if other controls are constructed before OnInit earlz 2009-10-24T17:06:14Z 2009-10-24T20:15:48Z <p>Hi, I'm making a custom control. </p> <p>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 are constructed or not.</p> <p>Ok, so basically I need to know in the constructor if the current instance being constructed will be the last. </p> <p>Note: My custom control contains other controls(though this isn't guaranteed) but it will not contain controls of MyCustomControl class.</p> <p>I've thought about doing an override of AddParsedObject. But if the instance of my custom control doesn't contain any controls, will this still get called? </p> http://stackoverflow.com/questions/1542909/asp-net-web-forms-page-lifecycle-problem-distinguishing-between-form-loading 1 ASP.Net (Web-forms) Page Lifecycle Problem - distinguishing between form loading, datapaging and command events. CJM 2009-10-09T10:00:13Z 2009-10-23T17:25:10Z <p>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 column (ASC or DESC), however I'm having problems when it comes to dynamic sorting where the user can pick a column and, at times, reverse the sort direction.</p> <p>My main problem is that currently the generation of sorted and paged data is triggered both in the Form_Load event handler and in the Listview_Sorting event handler. Ideally, I'd want the population of the listview to be handled in one way for form (re)loading and when selecting a new page of data, and in another way when the user clicks on the column header (ie when (re)sorting). Unfortunately, when the sorting event is fired, the code in Form_Load is executed and then later the code in ListView_Sorting is executed. </p> <p>Initially it was merely an inefficiency that I was prepared to let slide, but now some of the Form_Load code is fouling what I'm doing in the Sorting event handler.</p> <p>So my question is... how do I seperate the handling of these events into two groups; how can I run one set of code when the page loads for the first time and when data is paged from when I'm trying to sort the data?</p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'Initilize the Sort Column and Direction Dim LastColumn As String = If(Session("SortColumn") Is Nothing, "LastWriteTime", Session("SortColumn")) Dim SortDirection As SqlClient.SortOrder Dim SortDirections As Dictionary(Of String, SqlClient.SortOrder) = Session("SortDirections") If SortDirections Is Nothing OrElse Not SortDirections.ContainsKey(LastColumn) Then SortDirection = SqlClient.SortOrder.Descending Else SortDirection = SortDirections(LastColumn) End If Call GenerateSortedArray(LastColumn, SortDirection) End Sub Private Sub Page_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRender 'bind array to ListView Me.lvwMSGs.DataBind() End Sub Private Sub lvwMSGs_ItemCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ListViewCommandEventArgs) Handles lvwMSGs.ItemCommand Dim file As FileInfo = New FileInfo(e.CommandArgument.ToString) '-- if the file exists on the server If e.CommandName = "Stream" Then If file.Exists Then 'set appropriate headers Response.Clear() Response.AddHeader("Content-Disposition", "attachment; filename=" &amp; file.Name) Response.AddHeader("Content-Length", file.Length.ToString()) Response.ContentType = "application/octet-stream" Response.WriteFile(file.FullName) Response.End() Else 'if file does not exist Response.Write("This file does not exist.") End If End If End Sub Public Sub lvwMSGs_Sorting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ListViewSortEventArgs) Handles lvwMSGs.Sorting Call GenerateSortedArray(e.SortExpression, SqlClient.SortOrder.Ascending) End Sub Private Sub GenerateSortedArray(ByVal SortColumn As String, ByVal DefaultSortDirection As SqlClient.SortOrder) Dim dirInfo As New DirectoryInfo(Server.MapPath(AppSettings.Item("ContentDir"))) Dim FileArrayList As New ArrayList(dirInfo.GetFiles("*.msg", SearchOption.TopDirectoryOnly)) Dim SortDirections As New Dictionary(Of String, SqlClient.SortOrder) With FileArrayList .TrimToSize() SortDirections = Session("SortDirections") If Session("SortDirections") Is Nothing OrElse SortDirections.ContainsKey(SortColumn) Then 'Create dictionary, set to default and store in Session variable If Session("SortDirections") Is Nothing Then SortDirections = New Dictionary(Of String, SqlClient.SortOrder) End If SortDirections(SortColumn) = DefaultSortDirection Session("SortDirections") = SortDirections 'Sort data according to preferences .Sort(New FileInfoComparer(SortDirections(SortColumn), SortColumn)) Else 'retrieve previous sort direction SortDirections(SortColumn) = 1 - SortDirections(SortColumn) 'Sort data according to preferences .Sort(New FileInfoComparer(SortDirections(SortColumn), SortColumn)) End If End With With Me.lvwMSGs .DataSource = FileArrayList .ItemPlaceholderID = "ItemPlaceholder" End With End Sub </code></pre> http://stackoverflow.com/questions/1599113/asp-net-pagelifecycle-pageloadcomplete 0 Asp.net pagelifecycle page_loadComplete Martijn 2009-10-21T06:49:54Z 2009-10-21T11:34:05Z <p>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 to do with the page lifecycle? That button click (UI) events occur before the LoadComplete event?</p> http://stackoverflow.com/questions/1573180/is-it-possible-to-prevent-a-request-from-going-to-the-page 0 Is it possible to prevent a request from going to the page? IP 2009-10-15T15:38:41Z 2009-10-16T19:34:56Z <p>This might be really hacky, but I'm beginning to get desperate</p> <p>Is it possible to prevent a request from actually hitting the actual page...ie, can I write something in Application_BeginRequest that processes the part that I want, and then skips the rest of the lifecycle?</p> <p>Oh, and is it possible to do it in such a way that the ajax update panel does throw a fit (return some default content that says, "I haven't done anything sorry")</p> <p>Ok, mad question over.</p> http://stackoverflow.com/questions/1559865/how-can-i-manage-a-asp-net-page-in-different-states-using-an-enum 1 How can I manage a asp.net page in different states using an enum Dean 2009-10-13T12:19:20Z 2009-10-14T08:04:01Z <p>All </p> <p>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 can be in one of three states represented by a PageStates Enum within the control. The page on selecting the menu item merely updates the a property exposed from the control </p> <ul> <li>Initial State (nothing congifurable)</li> <li>Editing (this uses a dropdown extender and makes a gridview within it visible)</li> <li>Adding (this uses another dropdown extender and makes the same the gridview visible however with different properties)</li> </ul> <p><strong>PROBLEMS</strong></p> <ol> <li>The page will only get itself into the correct 'state' if the menu item is selected twice</li> <li>Controls are visible on the gridview when they shouldn't be</li> <li>The page 'state' seems to lag one state behind</li> </ol> <p>I think the main problem I having with this is that the grid view has check boxes drawn if the page is Adding mode, however you would need to select the Adding menu item option twice to get it into this state and I believe it is because I am setting the page state when the menu item is selected however the grid rows are already created at this point ( I am dynamically creating the check boxes in the grid view within the RowCreated event</p> <p>Does anyone have any suggestions as to how I get round this problem? Can this implementation <strong>ever</strong> work? </p> http://stackoverflow.com/questions/1558790/button-click-event-called-again-when-page-is-refreshed-using-f5 0 Button click event called again when page is refreshed using F5 IrfanRaza 2009-10-13T07:59:24Z 2009-10-13T08:15:23Z <p>Hi friends,</p> <p>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 from browser window then the same event is fired again.</p> <p>Could someone have any idea?</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1502874/web-methods-works-with-html-button-but-not-aspbutton 0 Web Methods works with html button but not asp:button John Nolan 2009-10-01T09:22:40Z 2009-10-01T13:14:12Z <p>I'm am looking at the code in <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">this</a> 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.</p> <p>CODE behind:</p> <pre><code> [WebMethod] public static string GetCurrentDate() { return DateTime.Now.ToString(); } </code></pre> <p>Aspx page:</p> <p>js:</p> <pre><code>&lt;script type="text/javascript"&gt; function UpdateTime() { $get('Label6').innerHTML = PageMethods.GetCurrentDate(OnSucceeded, OnFailed); } function OnSucceeded(result, userContext, methodName) { $get('Label6').innerHTML = result; } function OnFailed(error, userContext, methodName) { $get('Label6').innerHTML = "An error occured."; } &lt;/script&gt; </code></pre> <p>and other markup</p> <pre><code>&lt;form id="form1" runat="server"&gt; &lt;asp:ScriptManager EnablePageMethods="true" ID="ScriptManager2" runat="server"&gt; &lt;/asp:ScriptManager&gt; &lt;div id="usingWebMethods"&gt; &lt;asp:Label runat="server" Text="Using WebMethods" ID="Label5" /&gt; &lt;br /&gt; &lt;asp:Label runat="server" Text="Web Method Update!" ID="Label6" /&gt; &lt;asp:Button ID="Button3" runat="server" Text="Postback Update" OnClientClick="UpdateTime();" UseSubmitBehavior="False" /&gt; &lt;input type="button" id="Button4" value="Web Method Update" onclick="UpdateTime();" /&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>I've noticed 2 things with the button. The button returns an error occurred and even though the label changes the viewstate is not updated.</p> <p>Why do these 2 issues occur and what can I do to resolve them?</p> http://stackoverflow.com/questions/939305/button-on-click-method-entered-on-page-refresh 0 Button on click method entered on page refresh! test 2009-06-02T12:47:19Z 2009-09-27T06:00:02Z <p>Hi,</p> <p>I have a .net 2.0 application and I can't work out why a button's onclick method is run on page refresh.</p> <p>The exact scenario when this happens is a checkbox is ticked against each item the button is clicked and the onclick mthod processes this item, and the checkbox is cleared. Now when the page is refreshed for some reason the onclick method of the button is entered in to!</p> <p>Any help much appreciated.</p> <p>Thanks alot,</p> http://stackoverflow.com/questions/1470652/databinding-problems-with-postback 0 Databinding problems with postback Zan 2009-09-24T09:33:11Z 2009-09-25T22:45:26Z <p>Hey,</p> <p>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 them.</p> <p>First I have a DropDownList which I must sort in codebehind. It only contains text, so I should be able to do that with the following method called in page load:</p> <pre> Dim alist As ArrayList = New ArrayList For Each litem As ListItem In ltEsittelyDropDownList.Items alist.Add(litem.Text) Next alist.Sort() Dim uusiDDList As New DropDownList For i As Integer = 0 To alist.Count - 1 Dim litem As New ListItem litem.Text = alist(i).ToString litem.Value = alist(i).ToString uusiDDList.Items.Add(litem) ' Response.Write(alist(i).ToString) Next ltEsittelyDropDownList = uusiDDList ltEsittelyDropDownList.DataBind() </pre> <p>As you can see, there's a commented response.write in there, which shows the list is actually sorted. So why, when I load the page, can't I see any effect?</p> <p>The other problem, which is more critical and difficult, is as follows:</p> <p>In the aspx page I'm binding a SQL Server 2005 datasource to a gridview. And in the code-behind I catch on to the RowDataBound event in which I handle some links and properties inside the gridviews' cells. But I cannot get this to work on the first page load, only after the first extra postback.</p> <p>So, what is there to do? And thanks for all advice in front!</p> http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback 2 hidden field is null on !IsPostBack and not null on IsPostBack Jagd 2009-09-24T16:24:57Z 2009-09-24T17:05:31Z <p>First I'll apologize for the unclear title of my question. I wasn't sure how to succinctly describe my problem in a title.</p> <p>I have a hidden field in my .aspx </p> <pre><code>&lt;input type="hidden" name="hid1" value="0" /&gt; </code></pre> <p>I want to set the value of this field during the page load event, and if it is not a postback.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { // This doesn't work! Request.Form["hid1"] = "1"; } if (Page.IsPostBack) { // This DOES work! Request.Form["hid1"] = "1"; } } </code></pre> <p>The problem is that the Request doesn't contain the hidden field in the Form array during the page load event when it's not a postback (ie - the first time the page is hit). Subsequent hits to the page (ie - postbacks) result in the Form array containing the hidden field.</p> <p>I'm sure that it has to do with the lifecycle of the page, <strong>but I really need to know</strong>, how do I set the hidden field during the page load event and when it is not a postback?!</p> <p><strong>EDIT:</strong> I really, really don't want to incorporate the runat="server" attribute! </p> http://stackoverflow.com/questions/1455907/jquery-cycle-with-thumb-pager-issue 0 Jquery Cycle with thumb pager issue Geisterwerker 2009-09-21T18:03:05Z 2009-09-21T18:10:05Z <p>Hi,</p> <p>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 trying to have the ability to show both images that link out to other sections, and some that do not. So far, the thumbs break when I add a link to a main image. here is my code:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $('#ss').after('&lt;ul id="nav"&gt;').cycle({ fx: 'fade', speed: '2000', pager: '#nav', pause: 1, // callback fn that creates a thumbnail to use as pager anchor pagerAnchorBuilder: function(idx, slide) { return '&lt;li&gt;&lt;a href="#"&gt;&lt;img src="' + slide.a + '" width="50" height="50" /&gt;&lt;/a&gt;&lt;/li&gt;'; } }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="ss" &gt; &lt;a href="#"&gt;&lt;img src="img1.jpg" /&gt;&lt;/a&gt; &lt;a href="#"&gt;&lt;img src="img2.jpg" /&gt;&lt;/a&gt; &lt;a href="#"&gt;&lt;img src="img3.jpg" /&gt;&lt;/a&gt; &lt;a href="#"&gt;&lt;img src="img4.jpg" /&gt;&lt;/a&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1439876/asp-net-usercontrol-not-being-updated-after-event 0 ASP.NET UserControl not being updated after event mwright 2009-09-17T16:21:19Z 2009-09-17T21:55:24Z <p>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. </p> <pre><code>&lt;asp:TextBox ID="TextBox" runat="server"/&gt; &lt;asp:ImageButton ID="SubmitButton" onclick="SubmitButton_Click" runat="server" /&gt; </code></pre> <p>The button fires an event which triggers an update in the database. </p> <pre><code>protected void SubmitButton_Click(object sender, EventArgs e) { //Validate information in TextBox //Submit to database } </code></pre> <p>This should cause a new set of rows to be shown based on the information entered in the text box. However, the updated information is not being shown unless I force a page refresh. I suspect this is because of where event handling falls in the asp.net page/control lifecycle. As near as I can tell the values are loaded into the rows before the event is actually triggered, which causes them to get the old values and not the new values that they should have.</p> <p>My question is what is the best way to get around this? I'm assuming it will be something like checking to see if it's a postback in the page load event and not loading the user control rows but instead causing them to load or to refresh from the event somehow but I'm not sure what that should look like.</p> <p>Edit: I think I need to call the same function that is being called in the Page_Load but I'm not sure how to get to it from the custom control I guess.</p> http://stackoverflow.com/questions/1377406/asp-net-page-refreshf5-do-not-restore-the-initial-value-of-textbox 3 Asp.Net - page refresh(F5) do not restore the initial value of TextBox ari 2009-09-04T05:41:19Z 2009-09-17T18:44:23Z <p>this is the simple code:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { txt.Text = "Original"; } } </code></pre> <ol> <li><p>first load. text box state is "Original".</p></li> <li><p>manually , changing the value to "Not Original".</p></li> <li><p>pressing F5. the line:</p> <p>txt.Text = "Original";</p></li> </ol> <p>is executed but the Input value <strong>remain "Not Original"</strong></p> <p>but, <strong>when I hit with enter</strong> into the adressbar. the value is changed to the "Original".</p> <p>more starnge is when the adress contains '#' at the end (using jquery click..)</p> <p>then, even when I hit in the adressbar, the value <strong>remain "Not Original"</strong></p> http://stackoverflow.com/questions/1437747/custom-server-control-with-form-and-scriptmanager 0 Custom server control, with form and scriptmanager Knoxy 2009-09-17T09:38:01Z 2009-09-17T14:00:07Z <p>I am building a set of asp.net server controls and in one of them, essentially a container control, I want to add a form control, a script manager and an update panel. Is this possible or will I have to create these in a Page base class that I have for the web project for page/control life cycle reasons?</p> <p>I am not using master pages.</p> <p>Regards, Andrew</p> http://stackoverflow.com/questions/1342155/what-is-the-practical-difference-between-response-write-and 2 What is the practical difference between Response.Write and <%= %>? Chris Pebble 2009-08-27T16:17:13Z 2009-09-14T16:33:03Z <p>I've run into an issue where a third-party component appears to be interfering with <code>Response.Write</code> and causing any content within <code>Response.Write("")</code> to render before any of the other html. For example:</p> <pre><code>&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;% Response.Write("HELLO WORLD") %&gt; </code></pre> <p>will render as</p> <pre><code>HELLO WORLD&lt;html&gt;&lt;head&gt;... </code></pre> <p>However, any content rendered using <code>&lt;%= %&gt;</code> blocks will work <strong>correctly</strong>. The below code will work perfectly:</p> <pre><code>&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;%="HELLO WORLD"%&gt; </code></pre> <p>I always assumed that <code>&lt;%=</code> was simply shorthand for <code>Response.Write</code>. From what I've been able to find on MSDN I now understand that it <code>&lt;%=</code> is <strong>eventually</strong> converted to Response.Write, but apparently there are a few steps inbetween.</p> <p>Does anyone have a guess as to why the two would render differently or point me to some documentation/info that explains how <code>&lt;%= %&gt;</code> blocks are handled?</p> <p><strong>Update:</strong> The control that was causing the issue was the Telerik AjaxManager control from the 2009 Q1 release. Upgrading to the Q2 control resolved the problem.</p> <p>Unfortunately I don't have access to the source so I haven't been able to figure out why the control was causing this behavior. The issue has been resolved but I am still very curious as to why it existed in the first place.</p> http://stackoverflow.com/questions/94696/in-asp-net-during-which-page-lifecycle-event-does-viewstate-get-loaded 6 In ASP.Net, during which page lifecycle event does viewstate get loaded? drraude 2008-09-18T17:29:32Z 2009-09-14T03:52:48Z <p>I know it happens sometime before Load, but during what event exactly?</p> http://stackoverflow.com/questions/1404228/accessing-clientid-breaks-the-postback 0 Accessing ClientID breaks the postback... IP 2009-09-10T09:13:46Z 2009-09-10T10:25:43Z <p>Sometimes I do despair when working with ASP.Net - another problem that shouldn't be!</p> <p>On the web form there is an ASP table. In the ASP table there is a user control which I am making some changes to. In the ASP table there is a text box....nothing out of the ordinary so far!</p> <p>In the code behind, as part of the Page_Load, I need to access the ClientID of the textbox in order to register some javascript...so I do and the javascript seems to do everything it needs to. Everyone's happy.</p> <p>No, no apparently everyone's not happy, ASP.Net itself is very unhappy! </p> <p>On accessing the ClientID, the id that appears in the source is:</p> <pre><code>myControl_myTextBox </code></pre> <p>commenting out the line that accesses the ClientID means the id is rendered as:</p> <pre><code>ctl00_BodyPlaceHolder_myControl_myTextBox </code></pre> <p>The line that accesses the ClientID looks like this:</p> <pre><code>jsBuilder.AppendFormat(@"var filter = new TBFilter($(""#{0}"")[0]);", myTextBox.ClientID); </code></pre> <p>This in itself does not bother me, but the fact that it breaks the postback, does! If you type something into that textbox and hit the submit button (there's a submit button on the page!), it reloads the page, but puts the default value back in the textbox and completely ignores what you originally had. Madness - I haven't done anything particularly weird and out of the ordinary, so why has it broken the postback?</p> http://stackoverflow.com/questions/1373750/asp-net-basepage-back-referencing-to-concrete-implementation 1 ASP.NET BasePage back referencing to concrete implementation Chris Marisic 2009-09-03T14:29:39Z 2009-09-03T21:18:39Z <p>I have a page that is setup like this</p> <pre><code>public partial class _Default : ViewBasePage&lt;EmployeePresenter, IEmployeeView&gt;, IEmployeeView { ... } </code></pre> <p>Inside my base page </p> <pre><code>public abstract class ViewBasePage&lt;TPresenter, TView&gt; : Page where TPresenter : Presenter&lt;TView&gt; where TView : IView { protected TPresenter _presenter; public TPresenter Presenter { set { _presenter = value; _presenter.View = GetView(); // &lt;- Works //_presenter.View = (TView)this; &lt;- Doesn't work } } /// &lt;summary&gt; /// Gets the view. This will get the page during the ASP.NET /// life cycle where the physical page inherits the view /// &lt;/summary&gt; /// &lt;returns&gt;&lt;/returns&gt; private static TView GetView() { return (TView) HttpContext.Current.Handler; } } </code></pre> <p>What I need to do is actually cast (TView)_Default, using my GetView() method does indeed end with that result. Inside the base page I can't do</p> <pre><code>_presenter.View = (TView)this; </code></pre> <p>Because this is actually <code>ViewBasePage&lt;TPresenter,TView&gt;</code> so it can't directly cast to just TView.</p> <p>So my actual question is there any alternative ways to achieve my result in a way that feels less hacky, if this is the primary option is there really anything I need to be concerned about by treating my page in this manner?</p> <p><strong>Edit:</strong> </p> <p>The exact part I'm trying to write away is</p> <pre><code>private static TView GetView() { return (TView) HttpContext.Current.Handler; } </code></pre> <p>as I feel like this is fairly gross hack to be able to reference back to the page in this context.</p> http://stackoverflow.com/questions/1336081/what-is-processed-first-aspx-or-aspx-vb-code 1 What is processed first: aspx or aspx.vb code? Sebastian 2009-08-26T16:46:14Z 2009-08-26T18:06:03Z <p>I wonder what is processed first: if the code placed in the aspx part (using server tags &lt;% %>) or the code behind, because I place a variable that is filled in the Page_Load in the aspx between server tags and I'm not getting anything when there is a value.</p> <p>Anyone can point me in some directions like an article talking about the page lifecycle that includes the aspx code?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1252424/asp-net-what-happens-to-code-after-response-redirect 4 ASP.NET: What happens to code after Response.Redirect(...)? routeNpingme 2009-08-09T22:02:43Z 2009-08-09T22:32:43Z <p>Does Response.Redirect() cause the currently running method to abort? Or does code after Response.Redirect() execute also?</p> <p>(That is, is it necessary to return/Exit Sub after a Response.Redirect?)</p> http://stackoverflow.com/questions/1239409/asp-net-triggering-server-side-events-with-multiple-arguments 0 ASP.NET Triggering server-side events with multiple arguments Jerry 2009-08-06T14:51:00Z 2009-08-06T15:47:02Z <p>Hi,</p> <p>I've got a rather lengthy question I'm afraid. I'm fairly new to ASP.NET so please bear with me. I have built a control for an ASP.NET page that lists a number of options. Each option has two clickable areas (call them buttons for the sake of simplicity). One to select the option and one to hide the option.</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { RenderOptions(); } public void RenderOptions() { for (int i = 0; i &lt; 5; i++) { HtmlGenericControl div1 = new HtmlGenericControl("div"); div1.Attributes.Add("onclick", ClientScript.GetPostBackEventReference(this, "option" + i)); m_TreeContainer.Controls.Add(div1); HtmlGenericControl div2 = new HtmlGenericControl("div"); div2.Attributes.Add("onclick", ClientScript.GetPostBackEventReference(this, "option" + i)); m_TreeContainer.Controls.Add(div2); } } public void RaisePostBackEvent(string arg) { //do something } </code></pre> <p>This works fine (I do implement the IPostBackEventHandler interface). The problem here is that there doesn't seem to be a way for me to find which HTML element was clicked and thus which action should be performed in the RaisePostBackEvent method.</p> <p>What I tried to do is create a new class (HtmlDivControl) which looks like this:</p> <pre><code> class HtmlDivControl : HtmlGenericControl, IPostBackEventHandler { #region Delegates public delegate void ClickEventHandler(object sender, string eventArgument); #endregion #region Properties private ClickEventHandler m_Click; public ClickEventHandler Click { get { return m_Click; } set { m_Click = value; } } #endregion #region Constructors public HtmlDivControl() { } #endregion public void RaisePostBackEvent(string eventArgument) { m_Click.Invoke(this, eventArgument); } } </code></pre> <p>Now I made div1 and div2 my HtmlDivControl rather than HtmlGenericControl, set the Click property to a method (delegate) and passed the div (div1 or div2) itself as control for the GetPostBackEventReference method. This time, I could not only differentiate between the divs but also pre-determine the action that should be performed. However, the RaisePostBackEvent for controls are called after PageLoad. So the problem I'm with now is that the whole options control is rendered before the events are handled (and thus, an option that should for instance be hidden isn't because the actual hiding happens after the rendering). Moving the RenderOptions() call to the PageLoadComplete method doesn't help either, since then the div controls won't exist yet.</p> <p>I'm pretty sure I'm missing something quite fundamental here. But could someone please explain me how I should approach something like this?</p> <p>p.s. How am I supposed to write underscores here? They're used to make text italic? Is there some escape character?</p> http://stackoverflow.com/questions/1099603/loading-nested-usercontrols-in-asp-net 0 Loading Nested UserControls in ASP.NET Chet 2009-07-08T17:55:15Z 2009-07-29T16:46:17Z <p>I've got an issue with nested controls not loading properly. I've tried various page methods and nothing seems to work.</p> <p>EDIT: The site compiles and runs fine--it just leaves a blank screen though.</p> <p>Basically I have a wrapper control for a Chart that allows me to select data, bind, and customize the chart with a lot of abstraction. I need another wrapper control for that because there may be groups of charts that I want to represent easily.</p> <p>Generalized answers would be great too.</p> <p>Here's what I have. I've replaced my custom properties/attributes with fillers:</p> <p><strong>Default.aspx:</strong></p> <pre><code>&lt;%@ Page Language="C#" CodeBehind="Default.aspx.cs" %&gt; &lt;%@ Register src="OuterUserControl.ascx" tagname="OuterUserControl" tagprefix="uc2" %&gt; &lt;uc2:OuterUserControl ID="uc1" runat="server" Att1="foo" Att2="bar" /&gt; </code></pre> <p><strong>OuterUserControl.ascx:</strong></p> <pre><code>&lt;%@ Control Language="C#" AutoEventWireup="true" CodeBehind="OuterUserControl.ascx.cs" Inherits="Proj.OuterUserControl" EnableViewState="false" %&gt; &lt;%@ Register src="InnerUserControl.ascx" tagname="InnerUserControl" tagprefix="uc1" %&gt; &lt;div runat="server" id="holder"&gt;&lt;/div&gt; </code></pre> <p><strong>OuterUserControl.ascx.cs:</strong></p> <pre><code>private member variables Att1 Att2 protected void Page_Load(object sender, EventArgs e) { for(int i=0;i&lt;5;i++) { InnerUserControl cuc = new InnerUserControl(id); holder.Controls.Add(cuc); } } </code></pre> <p><strong>InnerUserControl.ascx:</strong></p> <pre><code>&lt;%@ Control Language="C#" AutoEventWireup="true" CodeBehind="InnerUserControl.ascx.cs" Inherits="Proj.InnerUserControl" %&gt; &lt;asp:Chart ID="chart" runat="server"&gt;&lt;/asp:Chart&gt; </code></pre> <p><strong>InnerUserControl.ascx.cs:</strong></p> <pre><code>private int id; //private member variables public InnerUserControl(int id) { this.id = id; this.chart = new Chart(); } protected void Page_Load(object sender, EventArgs e) { //Get data for given id //Databind chart //etc.. } </code></pre> http://stackoverflow.com/questions/1192518/create-pagecontext-from-httpservletrequest 0 create pageContext from HttpServletRequest unknown (yahoo) 2009-07-28T07:55:58Z 2009-07-28T08:01:12Z <p>I know this might sound crazy...but i am integrating with some third party api's and unfortunately they have a utility class which only takes a pageContext object..I did some peeking around and found that they are doing a lot of stuff with pageContext... Is there a way to get to or create a pageContext from HttpServeletRequest.</p> http://stackoverflow.com/questions/1190011/where-should-stuff-be-done-in-an-asp-net-page 7 Where should stuff be done in an ASP.NET page? BCS 2009-07-27T19:09:32Z 2009-07-27T21:37:38Z <p>I'm very new to ASP.NET and, after beating my head on <a href="http://stackoverflow.com/questions/1180443/how-to-programmatically-create-and-use-a-list-od-checkboxes-from-asp-net">a few problems</a>, I'm wondering if I'm doing things wrong (I've got a bad habit of doing that). I'm interested in learning about how ASP.NET operates.</p> <p>My question is: Where can I find documentation to guide me in deciding where to do what processing?</p> <p>As a few specific examples (I'm interested in answers to these but I'd rather be pointed at a resource that gives more general answers): </p> <ul> <li>What processing should I do in <code>Page_Load</code>?</li> <li>What processing should I do with the <code>Load</code> event?</li> <li>What <em>can</em> I do in <code>Page_Unload</code>?</li> <li>What order do things get done in?</li> <li>When is each event fired?</li> <li>What is the page life-cycle? </li> </ul> <p><hr /></p> <p>edit: <a href="http://stackoverflow.com/questions/924422/net-request-lifecycle-confusion/937103#937103">this question</a> might also be of use to some people.</p>