active questions tagged postback - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T00:26:47Z http://stackoverflow.com/feeds/tag/postback http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1859783/anatomy-of-a-postback 1 Anatomy of a Postback Costa 2009-12-07T12:51:55Z 2009-12-07T13:23:54Z <p>How do I determine the <code>Params</code> sent by a <code>POST</code> method?</p> <p>If I have a <code>button</code>, and that <code>button</code> is clicked, what is sent to the server?</p> http://stackoverflow.com/questions/1857606/how-to-detect-track-postback-in-javascript 0 How to detect/track postback in javascript? unknown (google) 2009-12-07T03:11:56Z 2009-12-07T11:11:14Z <p>How to detect/track/check postback in javascript(e.g in asp.net Page.isPostBack())? Any suggestion?</p> http://stackoverflow.com/questions/1840671/inside-what-the-texbox-value-is-posted-back-viewstate-or-post-back-data 0 Inside what the TexBox value is posted back? ViewState or post back data? burak ozdogan 2009-12-03T15:32:35Z 2009-12-04T13:51:04Z <p>In one article I was reading on ViewState, I saw a sentence saying that I should not fall into a mistake to believe that the value of a TextBox is stored in ViewState; it is stored in PostBack data.</p> <p>From here what I understand is when I post back a web form, the input controls values are stored in HTTP Request body. Not in the Viewstate. But as far as I know ViewState values are stored in an hidden field called __VIEWSTATE anyway. </p> <p>Then does it mean that __VIEVSTATE value is not posted in HTTP POST Request body as a postback data? Sounds nonesense to me.</p> <p>In another words, basically if I say the ViewState mechanism for such scenerio works like this, am I seeing it right or skipping something:</p> <ol> <li><p>You enter a value on an empty TextBox and submit the page</p></li> <li><p>The value of text box is posted back inside POST HTTP Request body. Nothing inside __VIEWSTATE at this point from the TextBox</p></li> <li><p>On the server side, the TextBox is created with the default value on OnInit method of the page </p></li> <li><p>The TrackChange property of ViewState is set to true.</p></li> <li><p>The posted back data of TextBox is loaded. Because it is different than the TextBox defalut value(because the user entered something), the ViewState of this text box is marked as DIRTY.</p></li> <li><p>The new value of the textbox is written into __VIEWSTATE hidden field</p></li> <li><p>From now on __VIEWSTATE hiddenfeild contains the last given value of the TextBox</p></li> <li><p>The page is sent to the user's browser having the __VIEWSTATE hidden field. But this time containing the last value entered by user which will be ready to be rendered</p></li> </ol> <p>Thanks guys!</p> <p>burak ozdogan</p> http://stackoverflow.com/questions/1837460/asp-net-postback-with-jquery-ajax-and-jquery-dialog 0 asp.net postback with jquery ajax and jquery dialog lloydphillips 2009-12-03T03:31:40Z 2009-12-03T03:39:25Z <p>We have a method on an asp.net page that is called on a button click. The problem is that the method take a long time to process. I've been asked to have the page call the method (or call the postback) and then display the jquery.ui dialog which will let the user know that this process could take a long time. I'm looking at serializing the asp.net form and doing a $.post() but to be honest I'm completely stuck on whether this will even work and how I can prevent the actual postback from happening and just displaying the dialog. Has anyone had any experience with doing this that can give me some pointers?</p> <p>I found this <a href="http://dotnet.dzone.com/news/eliminating-postbacks-setting-" rel="nofollow">http://dotnet.dzone.com/news/eliminating-postbacks-setting-</a> but I'm not sure if it's a bit OTT. The article is a little long winded.</p> <p>Hope someone can help.</p> http://stackoverflow.com/questions/1834136/asp-net-postback-not-working-in-jquery-nyromodal-popup 0 ASP.Net Postback not working in JQuery Nyromodal popup Vishnu Reddy 2009-12-02T16:34:09Z 2009-12-02T16:34:09Z <p>I have a Default.aspx page which loads a popup using JQuery Nyromodal popup. Within the popup I have which needs to postback on clicking the button.</p> <p>But when I click on the button in the popup window, URL in main window is replaced with popup window URL and also the data in modal popup is not posting back.</p> <p>Thanks</p> http://stackoverflow.com/questions/59829/trouble-with-selected-radiobuttonlist-value-on-postback-vb-net 0 Trouble with selected radiobuttonlist value on postback vb.net Brett 2008-09-12T20:01:58Z 2009-12-02T09:33:17Z <p>I have a radio button list on a page that is used to configure products. when the page loads the first time the first list of options is displayed. you select one of them then click a "Next Step" button and the page posts back and shows a new radio button list for step 2. Now if i click a "Previous Step" button i can easily get the previous list of options to display but i can not for some reason get one of the radio buttons to be selected. I can easily bring back the value i need. right after making the radio button list i have a step that just says radiobuttonlist.selected = "somevalue" depending on whatever the user chose when they completed the first step the first time.</p> <p>when i debug i see that the value is correct and is being applied. but then when the page is displayed the radiobutton is not selected.</p> <p>I have noticed that when i click my "Previous" button while debugging the folowing steps occur.:</p> <p>the page.load handler runs and the code inside my if not page.ispostback block does NOT run, which is correct. then the handles for the button i just clicked gets run. but then after that the page.load handler runs again but this time the code in the if not page.ispostback block DOES run...</p> <p>is that normal? for the page.onload block to run twice like that on a postback? i think it may have something to do with why my value is not being applied.</p> http://stackoverflow.com/questions/337849/handling-asp-postbacks-from-javascript-widget 0 Handling ASP postbacks from Javascript Widget hinden 2008-12-03T16:48:45Z 2009-12-02T06:00:02Z <p>I am trying to make a small, data-driven widget that is populated with data from a database on the fly. I can load it initially just fine, but when the index of an ASP DropDownMenu is changed, the widget returns a 404.</p> <p>This could be a symptom of how I am using the Javascript, or how I am using the ASP. I honestly don't know for sure.</p> <p>Javascript: <a href="http://pastebin.com/f127d6b84" rel="nofollow">http://pastebin.com/f127d6b84</a><br> ASP: <a href="http://pastebin.com/f38c73708" rel="nofollow">http://pastebin.com/f38c73708</a><br> VB.NET codebehind: <a href="http://pastebin.com/f7881a903" rel="nofollow">http://pastebin.com/f7881a903</a></p> http://stackoverflow.com/questions/1826654/invalidoperationexception-postback-trigger-cannot-find-a-control-within-the-item 0 InvalidOperationException: PostBack Trigger Cannot Find a Control within the ItemTemplate of a DataList Walter Lockhart 2009-12-01T14:47:59Z 2009-12-01T17:35:42Z <p>Hi Group,</p> <p>I would like to trigger a PostBack when the asp:LinkButton "addToCartButton" is clicked (see code below).</p> <p>I have declared a PostBack Trigger with the asp:UpdatePanel "updPnlProductsList" (see code below).</p> <pre><code>&lt;asp:Panel ID="pnlProductsList" runat="server" Visible="false"&gt; &lt;asp:UpdatePanel ID="updPnlProductsList" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;div class="featured"&gt; &lt;h3&gt;Product listing&lt;/h3&gt; &lt;div class="product clearfix"&gt; &lt;asp:DataList ID="productsList" runat="server" DataKeyField="prodid" OnItemCommand="productsList_ItemCommand" OnItemDataBound="productsList_ItemDataBound"&gt; &lt;HeaderTemplate&gt; &lt;table&gt; &lt;col width="85" /&gt; &lt;col width="315" /&gt; &lt;col width="85" /&gt; &lt;col width="315" /&gt; &lt;col width="85" /&gt; &lt;tr&gt; &lt;th align="left"&gt; &amp;nbsp; &lt;/th&gt; &lt;th align="left"&gt; Product Description &lt;/th&gt; &lt;th align="center"&gt; In Stock &lt;/th&gt; &lt;th align="center"&gt; Price &lt;/th&gt; &lt;th align="left"&gt; &amp;nbsp; &lt;/th&gt; &lt;/tr&gt; &lt;/HeaderTemplate&gt; &lt;ItemTemplate&gt; &lt;tr&gt; &lt;td height="85" valign="top"&gt; &lt;asp:HyperLink ID="standardImage" Style="float: left; margin-right: 5px; border: 2px; vertical-align: top;" Width="75" Height="75" runat="server"&gt;&lt;/asp:HyperLink&gt; &lt;/td&gt; &lt;td height="85" valign="top"&gt; &lt;asp:LinkButton ID="lbProductDescription" CommandName="show_product" runat="server" /&gt; &lt;p&gt; &lt;asp:Label ID="MfPartNo" runat="server" /&gt;&lt;/p&gt; &lt;/td&gt; &lt;td height="85" align="center" valign="top"&gt; &lt;p&gt; &lt;asp:Label ID="inventoryTextLabel" runat="server" /&gt;&lt;/p&gt; &lt;/td&gt; &lt;td style="padding-bottom: 10px;" height="85" align="center" valign="top"&gt; &lt;div class="product-actions clearfix"&gt; &lt;p class="price"&gt; &lt;strong&gt; &lt;asp:Label ID="sellPriceLabel" runat="server" Style="font-size: 0.9em;" /&gt;&lt;/strong&gt; &lt;/p&gt; &lt;/div&gt; &lt;/td&gt; &lt;td style="padding-bottom: 10px;" height="85" valign="top"&gt; &lt;div class="product-actions clearfix"&gt; &lt;p class="view"&gt; &lt;asp:LinkButton ID="addToCartButton" runat="server" Text="&lt;span&gt;&lt;strong&gt;Buy&lt;/strong&gt;&lt;/span&gt;" CommandName="add_to_cart" class="newactionbutton" /&gt; &lt;/p&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/div&gt; &lt;/ItemTemplate&gt; &lt;SeparatorTemplate&gt; &lt;tr&gt; &lt;td colspan="5" style="border-bottom: dotted 1px gray; line-height: 0.1em;"&gt; &amp;nbsp; &lt;/td&gt; &lt;/tr&gt; &lt;/SeparatorTemplate&gt; &lt;FooterTemplate&gt; &lt;/table&gt; &lt;/FooterTemplate&gt; &lt;/asp:DataList&gt; &lt;/div&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:PostBackTrigger ControlID="addToCartButton" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/asp:Panel&gt; &lt;!-- /The all new Products List. --&gt; </code></pre> <p>Unfortunately, when I run this code I get the error:</p> <p>InvalidOperationException: A control with ID 'addToCartButton' could not be found for the trigger in UpdatePanel 'updPnlProductsList'.</p> <p>Would someone please help me reference the 'addToCartButton' within the ItemTemplate of the DataList.</p> <p>Or maybe I can cause a PostBack in the asp:LinkButton code behind? I'm coding in C#.</p> <p>Kind Regards</p> <p>Walter</p> http://stackoverflow.com/questions/351804/jquery-script-not-working-after-postback-even-with-pageload 0 jquery script not working after postback even with pageLoad Xabatcha 2008-12-09T04:44:03Z 2009-12-01T17:24:28Z <p>Hi all, I've got some trouble with JQuery script on my Asp.net page. During first load it works well, after postback it does not. Initiali I thought that it is because script is not load again, but alert told me that script runs as I use function pageLoad() instead of $(document).ready(function(). In script I just read value from one textarea and set the lenght value to next text input. I am putting script into page like this:<br /> &lt;script type="text/javascript" src="../js/smsanywhere.js">&lt;/script><br /> I tried to place directly into page, but there is no difference I guess.</p> <p>The script is shown below.</p> <pre><code>function pageLoad() { alert('pageLoad is there'); var textBox = "textarea[id*='txtMessage']"; var counterBox = "input[id*='txtCharLeft']"; $(textBox).keydown(function(){ alert(this); var length = 70 - $(this).val().length; $(counterBox).val(length); $(counterBox).attr("style",function(){ return "width:30px;" + (length &lt; 0 ? "background-color:Red;" : ""); }); }); } </code></pre> <p>I dont use any ajax at this page, its just master page , content page and jquery.</p> <p>What am I missing...</p> http://stackoverflow.com/questions/1495314/problem-grasping-webpart-communication 0 Problem grasping webpart communication earlz 2009-09-29T22:36:57Z 2009-11-30T23:06:58Z <p>Hi, I'm having trouble understanding some web part communication code, and how to make it work as needed. I'm fairly new to web parts, so I figure I'm over complicating it.</p> <p>I have</p> <pre><code>public interface IFormTypeRID { int FormTypeRID { get; } } </code></pre> <p>For this page, I have a ListControl on the left which is a web part. When you select something with this list control, it posts back and sends this interface to the MainForm web part So I have this on the receiving end:</p> <pre><code>private IFormTypeRID theProvider; [ConnectionConsumer("FormTypeRID Consumer", "FormTypeRIDConsumer")] public void InitializeProvider(IFormTypeRID provider) { theProvider = provider; FormTypeRID = theProvider.FormTypeRID; } </code></pre> <p>Now, my problem is that InitializeProvider happens <em>after</em> Page_Load. </p> <p>This means that when a post back happens from inside the MainForm webpart, the FormTypeRID is never sent in. Well, thats easy just store it in view state or a hidden field.</p> <p>But theres the problem.</p> <p>How do I act on FormTypeRID being set if it's after PageLoad. Currently, I just have a setter method that calls the appropriate functions. This is troublesome however because the code in the setter must be executed twice. This is because FormTypeRID must be set in Page_Load because it is unknown whether our provider will be giving us our FormTypeRID or not(because we do not know if the post back happened because of the other webpart, or because of the FormMain) </p> <p>I know I explained that horribly. But basically, how do you tell if a postback happened(and therefore a page_load) from one webpart(the provider) or another?(the consumer)</p> http://stackoverflow.com/questions/1821646/controls-visibility-property-modified-by-javascript-is-ignored-after-postback 0 Controls' visibility property, modified by JavaScript, is ignored after postback PricklyMaster 2009-11-30T18:47:56Z 2009-11-30T20:57:21Z <p>My javascript code modifies some properties, visibility included. After postback, some properties stuck, others are "forgotten". Here I try to change the Text property of a textbox and the visibility property of a label to 'hidden'. After postback, the text is preserved, but the label is shown. I would very much like to keep the label hidden after the postback. The same occurs with the 'display' CSS property. Or, if I try to hide a <code>&lt;div&gt;</code>. Any help would be very much appreciated:</p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShowHide.aspx.cs" Inherits="WebApplication1.ShowHide" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head runat="server"&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;script type="text/javascript" language="javascript"&gt; function ShowHide() { debugger; var txt = document.getElementById('txtNumber'); txt.value='4'; var lbl = document.getElementById('lblShowHide'); if(lbl.style.visibility == 'hidden') { lbl.style.visibility = ''; } else { lbl.style.visibility = 'hidden'; } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:Label ID="lblNumber" runat="server" Text="Enter Number" /&gt; &lt;asp:TextBox ID="txtNumber" runat="server" Text="5" /&gt; &lt;asp:Label ID="lblShowHide" runat="server" Text="Show" /&gt; &lt;input id="btnChangeByJS" type="button" value="HTML Change by JavaScript" onclick="ShowHide();" /&gt; &lt;asp:Button ID="cmdSubmit" runat="server" Text="ASP Submit" /&gt; &lt;asp:HiddenField ID="hfShowHide" runat="server" /&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Thank you!</p> http://stackoverflow.com/questions/1821879/dropdownlist-losing-items-on-postback-in-iframe 0 DropdownList losing items on postback in iframe. WesleyJohnson 2009-11-30T19:28:51Z 2009-11-30T20:22:38Z <p>Having a very strange issue regarding postback in ASP.NET. I have page dynamically populating DropdownLists on Page_Load, only if it's not a postback. I also have several textboxes on the page for user input.</p> <p>If I postback, either by clicking a submit button or via a SelectedIndexChanged event, the textboxes maintain their values, but the DropdownLists lose all their items - but only IF the page is loaded via an iFrame. If I load the page directly, everything works fine. If I load it via an iFrame, everything but the dropdowns works.</p> <p>Has anyone run into this behavior before? I don't think it matters, but I'm on Windows7, IIS7, ASP.NET 3.5 and browing with IE8. ViewState is enabled, which is apparent from the textboxes having their values persisted. The ASP.NET page is in a WebApp hosted on localhost. The containing page, with the IFrame tag is just a dummy HTML file sitting on my desktop for testing. Is this perhaps just an IE security issue?</p> <p>UPDATE: I actually just moved the "dummy" container page into the Webapp and it seems to work fine, even via the iFrame. Still, I'd like to know why this is happening if the containing page is outside the Webapp as I intend on having people load the page in and iFrame via other domains..</p> http://stackoverflow.com/questions/1363329/fire-async-postback-from-jquery 0 Fire async postback from jquery alexander-strandberg 2009-09-01T16:07:43Z 2009-11-30T20:00:09Z <p>Is there a way to fire a postback to the server through jQuery?</p> <p>I've tried just putting the postback signature in a .change method on a hiddenfield but it causes a full postback.</p> http://stackoverflow.com/questions/1226674/linkbutton-inside-a-panel-but-outside-of-updatepanel-onclick-event-not-causing 0 LinkButton (inside a Panel, but outside of UpdatePanel) OnClick event not causing parent page PostBack? KimWilson 2009-08-04T10:08:15Z 2009-11-29T07:00:07Z <p>Using VS2005, ASP.Net 2.0, AjaxControlToolKit</p> <p>I have a LinkButton in a Panel that contains an UpdatePanel with a GridView. The link button is outside the UpdatePanel. The OnClick event has this code: </p> <pre><code>protected void lnkOk_Click(object sender, EventArgs e) { foreach (GridViewRow row in grdProductSearch.Rows) { CheckBox chk = row.Cells[0].Controls[0] as CheckBox; if (chk != null &amp;&amp; chk.Checked) { // ... } } Server.Transfer(Page.Request.RawUrl); } </code></pre> <p>I need it to pass the selected values of the grid back to the Parent page in a post back. But all it does is close the Panel. </p> <p>Any ideas why this is happening? or how can I achieve what I am trying to do? </p> http://stackoverflow.com/questions/1805659/is-it-possible-to-avoid-control-validation-after-clicking-one-button-and-dont-af 0 Is it possible to avoid control validation after clicking one button and don't after clicking another? abatishchev 2009-11-26T21:12:22Z 2009-11-26T21:23:14Z <p>I have a <code>UserControl</code> used for getting an exchange rate amount from user (bank manager) he prefer to be used by an account operation. Exchange rate can be loaded from central bank web service but just as a tip - final value is chosen by user.</p> <p>It contains one <code>asp:TextBox</code> box and two <code>asp:LinkButton</code> - Get (exchange rate) and Approve (client request).</p> <p>The text box value must be checked for existence (by <code>RequiredFieldValidator</code>) and correctness (by <code>RegularExpressionValidator</code> and <code>CompareValidator</code>) before approving.</p> <p>So the problem is - if user clicks on Get button, validation also is invoked and failed. How to disable it for Get button but enable for Approve button?</p> http://stackoverflow.com/questions/811459/updatepanel-full-postback 1 UpdatePanel Full Postback Korivo 2009-05-01T13:54:39Z 2009-11-25T15:09:50Z <p>Greetings, here is the scenario.</p> <p>I have and .aspx page with and updatepanel like this</p> <pre><code>&lt;asp:UpdatePanel id="uPanelMain" runat="server"&gt; &lt;ContentTemplate&gt; &lt;uc:Calendar id="ucCalendar" runat="server" Visible="true" /&gt; &lt;uc:Scoring id="ucScoring" runat="server" Visible="false" /&gt; &lt;/ContentTemplate&gt; </code></pre> <p></p> <p>The control ucCalendar is loaded first and it contains a grid like this </p> <pre><code>&lt;asp:DataGrid CssClass="grid" ID="gridGames" runat="server" AutoGenerateColumns="False" HeaderStyle-CssClass="gridHeader" ItemStyle-CssClass="gridScoringRow" GridLines="None" ItemStyle-BackColor="#EEEEEE" AlternatingItemStyle-BackColor="#F5F5F5" OnEditCommand="doScoreGame" OnDeleteCommand="doEditGame" OnCancelCommand="printLineup" OnItemDataBound="gridDataBound"&gt; &lt;Columns&gt; &lt;asp:TemplateColumn &gt; &lt;ItemTemplate&gt; &lt;asp:CheckBox ID="chkDelete" runat="server" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateColumn&gt; &lt;asp:BoundColumn DataField="idGame" Visible="false" /&gt; &lt;asp:BoundColumn DataField="isClose" Visible="false" /&gt; &lt;asp:TemplateColumn HeaderText="Status"&gt; &lt;ItemTemplate&gt; &lt;asp:Image ID="imgStatus" runat="server" ImageUrl="~/img/icoX.png" alt="icoStatus" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateColumn&gt; &lt;asp:TemplateColumn&gt; &lt;ItemTemplate&gt; &lt;asp:LinkButton ID="linkScore" runat="server" CommandName="Edit" Text="Score" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateColumn&gt; &lt;/Columns&gt; &lt;/asp:DataGrid&gt; </code></pre> <p>So when i click the "linkButton", the codebehind of the userControl calls a public method in the .aspx as this:</p> <p>From the userControl</p> <pre><code> protected void doScoreGame(object sender, DataGridCommandEventArgs e) { ((GM)this.Page).showScoring(null, null); } </code></pre> <p>From the .aspx page </p> <pre><code>public void showScoring(object sender, EventArgs e) { removeLastLoadedControl(); ucScoring.Visible = true; } </code></pre> <p>So, here comes the problem:</p> <p>There are two postbacks taking place when I change the visible attribute of the ucScoring control.</p> <p>The first postback is fine, it's handled by the updatePanel.</p> <p>The second postback is a full postback, and i really don't understand why it is happening.</p> <p>I'm really lost here, please help!</p> <p>Thanks</p> <p>Mat </p> http://stackoverflow.com/questions/1797234/how-to-access-form-controls-on-postback-from-dynamically-built-form 0 How to access Form controls on Postback from Dynamically built form. Dave 2009-11-25T14:26:39Z 2009-11-25T14:34:30Z <p>I'm adding controls at run-time to the <code>Page Form</code> object.</p> <p>Each control has an Id.</p> <p>On postback, I want to be able to access these controls and their values.</p> <p>Currently, when I do a postback, the form has no controls in the <code>Form.Controls</code> Collection.</p> <p>How can I rectify this?</p> <p>Is this only possible if you add the controls to the page every time the page loads?</p> http://stackoverflow.com/questions/1791416/prevent-postback-when-user-clicks-browsers-back-button 1 Prevent Postback when user clicks browser's back button Rick 2009-11-24T16:58:20Z 2009-11-24T22:00:02Z <p>I have a web page that sends email to multiple users (online distribution list). After the submit button is clicked and the email is sent, a status page is shown listing how many emails were sent, errors, and other information. If the user clicks the back button, the email is resent. How can I prevent this?</p> <p>NOTE: The browser DOES prompt the user to "resubmit" or "resend" data to the page before actually sending the email, but that does not stop my users from clicking it and then wondering why two copies of the email were sent out.</p> <p>Environment:</p> <ul> <li>Server: C#, ASP.NET 2.0, IIS6</li> <li>Client: any browser (I don't want an IE-specific solution like SmartNavigation)</li> </ul> http://stackoverflow.com/questions/1789369/asp-net-updatepanel-cancel-previous-asyncpostback 0 ASP.NET UpdatePanel Cancel Previous AsyncPostBack Zuhaib 2009-11-24T11:08:48Z 2009-11-24T11:24:27Z <p>I have more than one UpdatePanel inside a webform. Inside a UpdatePanel I have a button which triggers AsyncPostBack. According to my requirement I need to cancel any previous pending AsyncPostBack triggered by this button before triggering a new AsyncPostBack, <strong>but without aborting any other postback.</strong></p> <p>For instance when I cancel postback for the update panel upPostback I don't want to cancel the postback for the update panel upPostback2.</p> <p><strong>Mark Up:</strong></p> <pre><code>&lt;asp:UpdatePanel ID="upPostback" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:HiddenField ID="hiddenCounter" runat="server" Value="" /&gt; &lt;asp:Button ID="btnDoPostback" runat="server" Text="Click Me" OnClick="OnDoPostBack_Click" OnClientClick="CancelPreviousPostBack()" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:UpdatePanel ID="upPostBack2" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:Button ID="btnDoPostBack2" runat="server" Text="Click Me2" OnClick="OnDoPostBack2_Click" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>The function <strong>CancelPreviousPostBack</strong> checks if there is an AsyncPostBack going on if yes then calls the abortPostBack method of the PageRequestManager to abort any existing AsyncPostBack's and then continue with the new post back.</p> <p><strong>JavaScript:</strong></p> <pre><code>function CancelPreviousPostBack() { var prm = Sys.WebForms.PageRequestManager.getInstance(); var isInPostback = prm.get_isInAsyncPostBack(); if (isInPostback) { // cancel the previous postback prm.abortPostBack(); var hiddenCounter = document.getElementById('hiddenCounter'); hiddenCounter.value = counter; counter++; } } </code></pre> <p><strong>But when the abortPostBack function of the PageRequestManager is called it aborts all the AsyncPostBacks going on in the form.</strong></p> <p>I couldn't find any method to find out which control triggered the postback if I call the CancelPreviousPostBack function on the OnClientClick Event of the Button. The only way to find out the Id of the control that triggered the postback was to add an event handler to the add_beginRequest method of the PageRequestManager. So I modified my code.</p> <p><strong>Mark Up:</strong></p> <pre><code>&lt;asp:Button ID="btnDoPostback" runat="server" Text="Click Me" OnClick="OnDoPostBack_Click" /&gt; </code></pre> <p><strong>JavaScript:</strong></p> <pre><code>var counter = 0; var _isInitialLoad = true; function pageLoad() { if (_isInitialLoad) { _isInitialLoad = false; // hook the events var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_beginRequest(CancelPreviousPostBack); } } function CancelPreviousPostBack(sender, args) { var prm = Sys.WebForms.PageRequestManager.getInstance(); var isInPostback = prm.get_isInAsyncPostBack(); var postBackElementId = args.get_postBackElement().id; if (isInPostback &amp;&amp; postBackElementId == 'btnDoPostback') { // cancel the previous postback prm.abortPostBack(); var hiddenCounter = document.getElementById('hiddenCounter'); hiddenCounter.value = counter; counter++; } } </code></pre> <p><strong>Now when there are pending postback's prm.get_isInAsyncPostBack() should return true, but strangely it returns false.</strong> Even if it returned true it doesn't solve my problem prm.abortPostBack() function aborts all the ongoing postbacks.</p> http://stackoverflow.com/questions/1785764/asp-net-control-events-not-firing-inside-repeater 0 ASP.NET - Control Events Not Firing Inside Repeater Nathan Taylor 2009-11-23T20:34:43Z 2009-11-24T08:01:49Z <p>This is a absurdly common issue and having exhausted all of the obvious solutions, I'm hoping SO can offer me some input... I have a UserControl inside a page which contains a repeater housing several controls that cause postback. Trouble is, all of the controls inside of the repeater never hit their event handlers when they postback, but controls outside of the repeater (still in the UC) are correctly handled. I already made sure my controls weren't being regenerated due to a missing <code>if(!IsPostBack)</code> and I verified that Request.Form["__EVENTTARGET"] contained the correct control ID in the Page_Load event. I attempted to reproduce the symptoms in a separate project and it worked as it should.</p> <pre><code>&lt;%@ Control Language="C#" AutoEventWireup="true" CodeBehind="NoteListControl.ascx.cs" Inherits="SantekGBS.Web.UserControls.NoteListControl" %&gt; &lt;asp:UpdatePanel ID="upNotes" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;div class="NoteList" id="divNoteList" runat="server"&gt; &lt;asp:Repeater ID="repNotes" runat="server"&gt; &lt;HeaderTemplate&gt; &lt;table width="98%" cellpadding="3" cellspacing="0"&gt; &lt;/HeaderTemplate&gt; &lt;ItemTemplate&gt; &lt;tr class="repeaterItemRow"&gt; &lt;asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/Content/images/DeleteIcon.gif" OnClick="ibRemove_Click" CommandArgument='&lt;%# Container.ItemIndex %&gt;' CommandName='&lt;%# Eval("ID") %&gt;' CausesValidation="false" AlternateText="Delete" /&gt; &lt;%# Eval("Text") %&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/ItemTemplate&gt; &lt;FooterTemplate&gt; &lt;/table&gt; &lt;/FooterTemplate&gt; &lt;/asp:Repeater&gt; &lt;asp:PlaceHolder ID="phNoNotes" runat="server" Visible="false"&gt; &lt;div class="statusMesssage"&gt; No notes to display. &lt;/div&gt; &lt;/asp:PlaceHolder&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p><hr></p> <pre><code>public partial class NoteListControl : UserControl { [Ninject.Inject] public IUserManager UserManager { get; set; } protected List&lt;Note&gt; Notes { get { if (ViewState["NoteList"] != null) return (List&lt;Note&gt;)ViewState["NoteList"]; return null; } set { ViewState["NoteList"] = value; } } public event EventHandler&lt;NoteEventArgs&gt; NoteAdded; public event EventHandler&lt;NoteEventArgs&gt; NoteDeleted; public event EventHandler&lt;NoteEventArgs&gt; NoteChanged; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { UtilityManager.FillPriorityListControl(ddlPriority, false); } } protected void ibRemove_Click(object sender, ImageClickEventArgs e) { System.Diagnostics.Debug.WriteLine("ibRemove POSTBACK"); // This is NEVER hit } public void Fill(List&lt;Note&gt; notes) { Notes = notes; RefreshRepeater(); } private void RefreshRepeater() { if (Notes != null &amp;&amp; Notes.Any()) { var sorted = Notes.OrderByDescending(n =&gt; n.Timestamp); Notes = new List&lt;Note&gt;(); Notes.AddRange(sorted); repNotes.Visible = true; phNoNotes.Visible = false; repNotes.DataSource = Notes; repNotes.DataBind(); } else { repNotes.Visible = false; phNoNotes.Visible = true; } } } public class NoteEventArgs : EventArgs { public Note Note { get; set; } public NoteEventArgs() { } public NoteEventArgs(Note note) { this.Note = note; } } </code></pre> <p>The code is intentionally missing functionality so just disregard that fact.</p> http://stackoverflow.com/questions/29174/simplemodal-breaks-asp-net-postbacks 3 SimpleModal breaks ASP.Net Postbacks tghw 2008-08-26T23:19:47Z 2009-11-23T22:53:52Z <p>I'm using <a href="http://jquery.com/" rel="nofollow">jQuery</a> and <a href="http://www.ericmmartin.com/projects/simplemodal/" rel="nofollow">SimpleModal</a> in an ASP.Net project to make some nice dialogs for a web app. Unfortunately, any buttons in a modal dialog can no longer execute their postbacks, which is not really acceptable.</p> <p>There is one source I've found with a <a href="http://blog.hurlman.com/post/jQuery2c-simpleModal2c-and-ASPNet-postbacks-do-not-play-well-together.aspx" rel="nofollow">workaround</a>, but for the life of me I can't get it to work, mostly because I am not fully understanding all of the necessary steps.</p> <p>I also have a workaround, which is to replace the postbacks, but it's ugly and probably not the most reliable. I would really like to make the postbacks work again. Any ideas?</p> <p>UPDATE: I should clarify, the postbacks are not working because the Javascript used to execute the post backs has broken in some way, so nothing happens at all when the button is clicked.</p> http://stackoverflow.com/questions/411167/postback-problem-when-using-url-rewrite-and-404-aspx 0 Postback problem when using URL Rewrite and 404.aspx salle55 2009-01-04T15:47:19Z 2009-11-23T22:38:06Z <p>I'm using URL rewrite on my site to get URLs like:<br /> <em><a href="http://mysite.com/users/john" rel="nofollow">http://mysite.com/users/john</a></em><br /> instead of<br /> <em><a href="http://mysite.com/index.aspx?user=john" rel="nofollow">http://mysite.com/index.aspx?user=john</a></em></p> <p>To achive this extensionless rewrite with IIS6 and no access to the hosting-server I use the "404-approach". When a request that the server can't find, the mapped 404-page is executed, since this is a aspx-page the rewrite can be performed (I can setup the 404-mapping using the controlpanel on the hosting-service).</p> <p>This is the code in Global.asax:</p> <pre><code>protected void Application_BeginRequest(object sender, EventArgs e) { string url = HttpContext.Current.Request.Url.AbsolutePath; if (url.Contains("404.aspx")) { string[] urlInfo404 = Request.Url.Query.ToString().Split(';'); if (urlInfo404.Length &gt; 1) { string requestURL = urlInfo404[1]; if (requestURL.Contains("/users/")) { HttpContext.Current.RewritePath("~/index.aspx?user=" + GetPageID(requestURL)); StoreRequestURL(requestURL); } else if (requestURL.Contains("/picture/")) { HttpContext.Current.RewritePath("~/showPicture.aspx?pictureID=" + GetPageID(requestURL)); StoreRequestURL(requestURL); } } } } private void StoreRequestURL(string url) { url = url.Replace("http://", ""); url = url.Substring(url.IndexOf("/")); HttpContext.Current.Items["VirtualUrl"] = url; } private string GetPageID(string requestURL) { int idx = requestURL.LastIndexOf("/"); string id = requestURL.Substring(idx + 1); id = id.Replace(".aspx", ""); //Only needed when testing without the 404-approach return id; } </code></pre> <p>And in Page_Load on my masterpage I set the correct URL in the action-attribute on the form-tag.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { string virtualURL = (string)HttpContext.Current.Items["VirtualUrl"]; if (!String.IsNullOrEmpty(virtualURL)) { form1.Action = virtualURL; } } </code></pre> <p>The rewrite works fine but when I perform a postback on the page the postback isn't executed, can this be solved somehow?</p> <p>The problem seems to be with the 404-approach because when I try without it (and loses the extensionless-feature) the postback works. That is when I request:<br /> <em><a href="http://mysite.com/users/john.aspx" rel="nofollow">http://mysite.com/users/john.aspx</a></em> </p> <p>Can this be solved or is there any other solution that fulfil my requirements (IIS6, no serveraccess/ISAPI-filter and extensionless).</p> http://stackoverflow.com/questions/1786454/an-update-panel-a-postback-and-jquery 0 An update panel, a postback and jQuery Chris 2009-11-23T22:19:21Z 2009-11-23T22:30:27Z <p>An update panel, a postback and jQuery. Sounds like a bad joke, but here's my situation.</p> <p>I've got two grids wrapped up in a MS update panel. The grids each have buttons in them that cause postback events to happen. under one grid is a div which is hidden by a jQuery function. And in one grid is a hyperlink which can cause that hidden div to show. Inside of the hidden div is a asp:button used for another postback.</p> <p>Now is when I run into a problem. When I click either one of the buttons inside the grids, my div which is hidden by jQuery shows up. I don't want it to show up. In fact it should stay hidden until I call the method to make it show up. The hyperlink click event for the div does work, it's just that on a postback, the hidden div shows. Anyone know what could be causing this? Am I missing something on the postback or do I need more in the document.ready section of the jquery. Or is the MS ajax update panel screwing with things.</p> <p>Here's a snippet of the jQuery to hide the div:</p> <pre><code>$(document).ready(function() { $("#actionDiv").hide(); }); </code></pre> http://stackoverflow.com/questions/1780764/updatepanel-error-cant-figure-it-out 0 UpdatePanel Error - can't figure it out cdonner 2009-11-23T02:03:57Z 2009-11-23T02:22:49Z <p>I am calling this in the code-behind of a page loaded into a Shadowbox popup:</p> <pre><code> ScriptManager.RegisterStartupScript(this, this.GetType(), "CloseScript", "parent.closeServiceOption();", true); </code></pre> <p>I know that the Javascript function is being called, since get the Alert() box pops up, and I can step through the code in the IE Developer Toolbar.</p> <pre><code> function closeServiceOption() { Shadowbox.close(); alert("updating"); __doPostBack('&lt;% =upGrid.ClientID %&gt;', ''); return true; </code></pre> <p>upGrid is an asp:UpdatePanel on the parent page:</p> <pre><code> &lt;asp:UpdatePanel ID="upGrid" runat="server" UpdateMode="Conditional" EnableViewState="true"&gt; </code></pre> <p>This trick works on several other pages, but not on the one that I just wrote, and I can't figure out why.</p> <p>This is the error that IE shows me:</p> <pre><code> Object doesn't support this property or method ScriptResource.axd? d=mnUf4WG8LrLFogIwzhvkGVdo-KPzLIFFBfGx6AcICRfPeY_Du0eoxLRaVGrqyoAqxR8l67 1VS6MZAdxdawuxsyoM3wpGxwL83KwO7UehZus1&amp;t=ffffffffec2d9970, line 4723 character 21 </code></pre> <p>Line 4723 is the finally() clause in the Sys$Net$XMLHttpExecutor function:</p> <pre><code> finally { if (_this._xmlHttpRequest != null) { _this._xmlHttpRequest.onreadystatechange = Function.emptyMethod; _this._xmlHttpRequest = null; } } </code></pre> <p>2 lines later I get "Permission denied", and "Access is denied" for all other properties of xmlHttpRequest when I inspect them in the debugger. Again, I use this trick (calling __doPostBack on the client) on several other pages where it works. The UpdatePanel has the same attributes (specifically, ViewState is enabled, and disabling it does not fix the issue), and I don't see anything else that is different on this page, but there must be something I am missing. Any ideas?</p> <p>Firefox/Firebug, btw, does not show any errors at all but the UpdatePanel does not post back, either.</p> http://stackoverflow.com/questions/1780010/prevent-iframe-reloading-on-post-back 0 Prevent Iframe reloading on post back Dave 2009-11-22T21:08:55Z 2009-11-22T21:24:22Z <p>Hi all, I have a webpage with one iframe and a button.</p> <p>On Page Load event,</p> <pre><code>if (!Page.IsPostBack) { string sDocUrl = //some doucmen url Iframe1.Attributes["src"] = sDocUrl; } </code></pre> <p>When the page is reloaded (by clicking a button), this iframe is being reloaded too. This iframe has a static data and doesn't need to be reloaded everytime when I click a button. Is there a way to prevent iframe to be reloaded when webform is reloaded?</p> http://stackoverflow.com/questions/1761136/postback-a-linkbutton-in-a-grid-thats-under-an-updatepanel 0 Postback a linkbutton in a grid that's under an UpdatePanel Juvil John Soriano 2009-11-19T05:41:53Z 2009-11-21T01:22:30Z <p>as my title says...</p> <p>How do you make a LinkButton fire a POSTBACK (not ASYNCPOSTBACK) which is inside a GridView and is under an UpdatePanel?</p> <p>My Scenario is this,</p> <p>I have a grid. say table A, which populates a Linkbuttons with link to do Server.Transfer calls from Page1 to Page2.</p> <p>I have a good reason why i am using a Server.Transfer because of previous page referencing methods and Response.Redirect doesnt fit at all.</p> <p>normally it would work if i add the grid as a Postback trigger in the UpdatePanel like so</p> <pre><code>&lt;Triggers&gt;&lt;asp:PostBackTrigger ControlID="gvitem" /&gt;&lt;/Triggers&gt; </code></pre> <p>but since I have another control inside the grid that needs to be do an AsyncPostback, that would not work also,</p> <p>all that's lacking is have this line of code, do postback.</p> <pre><code>&lt;asp:TemplateField HeaderText="Description" SortExpression="ShortDesc"&gt; &lt;ItemTemplate&gt; &lt;asp:LinkButton ID="btndesc" runat="server" Text='&lt;%# DataBinder.Eval(Container.DataItem, "ShortDesc")%&gt;' CommandName="Edit" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "Key") %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>anyone have an idea?</p> http://stackoverflow.com/questions/1758240/how-do-i-make-a-textbox-postback-on-keyup 0 How do I make a Textbox Postback on KeyUp? Russ 2009-11-18T18:57:00Z 2009-11-20T06:00:58Z <p>I have a Textbox that changes the content of a dropdown in the OnTextChanged event. This event seems to fire when the textbox loses focus. How do I make this happen on the keypress or keyup event?</p> <p>Here is an example of my code</p> <pre><code>&lt;asp:TextBox ID="Code" runat="server" AutoPostBack="true" OnTextChanged="Code_TextChanged"&gt; &lt;asp:UpdatePanel ID="Update" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:DropDownList runat="server" ID="DateList" /&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="Code" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>So in the codebehind, I bind the dropdown on page load. The Code_TextChanged event just rebinds the dropdown. I would like this to happen on each keypress rather than when the textbox loses focus. </p> <p>I inherited this code recently and this is not the ideal method of doing this for me, but time limitations prevent me from rewriting this in a web servicy method.</p> <p>I have tried using jQuery to bind the "keyup" event to match the "change" event for the textbox, but this only works on the first key pressed.</p> http://stackoverflow.com/questions/1768000/how-can-i-remove-values-from-a-dropdown-so-they-are-not-there-on-page-submit 0 How can I remove values from a dropdown so they are not there on page submit? Kettenbach 2009-11-20T02:46:43Z 2009-11-20T03:14:52Z <p>Hi All,</p> <p>I have a textbox and a dropdown list on an aspx webform. The user would type in a number and then submit and the dropdown would be populated with values relevant to the typed word. If the user types a new term in the text box, I want to truncate the dropdown and when the user submits, it would submit only the text and no dropdown value (actually an empty string is ok). As the user navigates through the dropdown the page is updated with data relevant to the text and the dropdown value. I am using the following jQuery </p> <pre><code>function removeCoverageOptions() { $("#ctl00_DefaultContent_txtClaimNumber").keypress( function() { $("#ctl00_DefaultContent_ddCovCert").find("option").remove(); } ); </code></pre> <p>}</p> <p>I am running that on <code>$(function(){ removeCoverageOptions(); });</code></p> <p>It does remove the option items in the UI, but when I submit the form and debug... in page load <code> var claimNum = txtClaimNumber.Text; var certSeq = ddCovCert.SelectedValue;</code></p> <p>claimNum is the correct newly typed text, but certSeq still has "999", the last selected value. Any ideas on how I can correct this. When I change claimNum, I intend certSeq to be an empty string. Is it maybe a viewstate issue?</p> <p>Thanks, ~ck in San Diego</p> http://stackoverflow.com/questions/1756829/postback-after-jquery-dialog-box-closes-causes-js-error-in-ie 0 Postback after JQuery Dialog box closes causes js error in IE The Sheek Geek 2009-11-18T15:34:29Z 2009-11-18T15:56:44Z <p>Hello All,</p> <p>I am creating JQuery dialog boxes and need the close functionality to cause a postback to the parent form (so that data changed in the popup form displays immediately on the parent screen). I have the code written and the dialog box in place. However, there is an issue. In IE, when I close the popup and the postback occurs, I get this javascript error that states "Object doesn't support this property or method" and it refers to the block of code that creates the dialog box.</p> <p>Just some backgroud: The page with the popup is an aspx page with many areas that display database information that can be changed. This page uses master pages. The popup contains an iframe that I change the source of depending on what button is clicked. I was hoping to use the same dialog box and popup div for the many popup forms we have.</p> <p>Here is the javascript. It is located in the $(document).ready section:</p> <pre><code>//Source of IE error $("#popup").dialog({ bgiframe: true, resizable: false, height: 217, modal: true, autoOpen: false, close: function() { $('#aspnetForm').submit(); //Submit the parent form to cause postback } }); $("#BHSubmitBtn").click(function() { var splitChar = $("#ctl00_Main_splitCharacter"); var queueId = $("#ctl00_Main_queueId"); var siteName = $("#ctl00_Main_siteName"); var queryString = "Add" + splitChar + siteName + splitChar + queueId; $("#popupFrame").attr('src', 'BusinessHoursSubForm.aspx?var1=' + queryString); $("#popup").dialog('open'); }); </code></pre> <p>Here is the div I am popping up:</p> <pre><code>&lt;div id="popup" title="Business Hours" &gt; &lt;iframe id="popupFrame" src=""&gt;&lt;/iframe&gt; &lt;/div&gt; </code></pre> <p>Here is the button that opens the form:</p> <pre><code>&lt;input class="clsSubmitBtn" id="BHSubmitBtn" type="button" value="Add" /&gt; </code></pre> <p>I have tried many different ways to handle this, most ending in a javascript error (the one above) in the ui.dialog on the line that starts with:</p> <p><code>$.widget('ui.dialog', ...)</code> or my javascript.</p> <p>Can anyone think of why this is happening? I have gotten it to work (with the postback) but I had to strip the page of everything but the section I am working on but there isn't anything I can see that would cause it.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1751505/ie-7-browser-file-print-causing-postback-to-page-asp-net-3-5 0 IE 7 Browser -> File -> Print causing PostBack to page? ASP.NET 3.5 Boom Shaka Laka 2009-11-17T20:22:22Z 2009-11-17T20:22:22Z <p>I have code that "pops up" another ASPX page with an image in it. The javascript used to popup the the window is below.</p> <pre><code> string url = @"DocumentPage.aspx?imageGuid=" + imageGuid; string winWidth = "800"; string winHeight = "600"; StringBuilder scriptString = new StringBuilder(); scriptString.Append("&lt;script language='JavaScript'&gt; function openDocument(){"); scriptString.Append("var url = " + "'" + url + "';"); scriptString.Append("var wndw = window.open(url,'','width= " + winWidth + ",height=" + winHeight + ",resizable=Yes,status=Yes,scrollbars=Yes,menubar=Yes');"); scriptString.Append("if ((document.window != null) &amp;&amp; (!wndw.opener)) wndw.opener = document.window;"); scriptString.Append("} openDocument();&lt;"); scriptString.Append("/"); scriptString.Append("script&gt;"); </code></pre> <p>The image renders in this DocumentPage.aspx fine. In IE 7 when I click the File -> Print, this action alone causes this DocumentPage.aspx to fire a PostBack and the Page property of IsPostBack is false, so it essentially runs through the same code it executed on page pop up.</p> <p>Has anyone run across this Browser -> File -> Print causing post backs in asp.net? If so do you have a work around to stop this? (Its not doing anything to break the pages functionality, its just really annoying for wasting resources with unneeded postback calls).</p>