active questions tagged updatepanel - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:06:34Z http://stackoverflow.com/feeds/tag/updatepanel http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267124/updatepanel-slowness-in-ie 1 UpdatePanel Slowness in IE Jared 2008-11-05T23:22:35Z 2009-11-27T16:00:18Z <p>I'm working on an ASP.Net application and working to add some Ajax to it to speed up certain areas. The first area that I am concentrating is the attendance area for the teachers to report attendance (and some other data) about the kids. This needs to be fast.</p> <p>I've created a dual-control set up where the user clicks on the icon and via Javascript and Jquery I pop up the second control. Then I use a __doPostBack() to refresh the pop up control to load all of the relevant data.</p> <p>Here's a little video snippet to show how it works: <a href="http://www.screencast.com/users/cyberjared/folders/Jing/media/32ef7c22-fe82-4b60-a74a-9a37ab625f1f" rel="nofollow">http://www.screencast.com/users/cyberjared/folders/Jing/media/32ef7c22-fe82-4b60-a74a-9a37ab625f1f</a> (:21 and ignore the audio background).</p> <p>It's slower than I would like at 2-3 seconds in Firefox and Chrome for each "popping up", but it's entirely unworkable in IE, taking easily 7-8 seconds for each time it pops up and loads. And that disregards any time that is needed to save the data after it's been changed.</p> <p>Here's the javascript that handles the pop-up:</p> <pre><code>function showAttendMenu(callingControl, guid) { var myPnl = $get('" + this.MyPnl.ClientID + @"') if(myPnl) { var displayIDFld = $get('" + this.AttendanceFld.ClientID + @"'); var myStyle = myPnl.style; if(myStyle.display == 'block' &amp;&amp; (guid== '' || guid == displayIDFld.value)) { myStyle.display = 'none'; } else { // Get a reference to the PageRequestManager. var prm = Sys.WebForms.PageRequestManager.getInstance(); // Unblock the form when a partial postback ends. prm.add_endRequest(function() { $('#" + this.MyPnl.ClientID + @"').unblock({ fadeOut: 0}); }); var domEl = Sys.UI.DomElement; //Move it into position var loc = domEl.getLocation(callingControl); var width = domEl.getBounds(callingControl).width; domEl.setLocation(myPnl, loc.x + width, loc.y - 200); //Show it and block it until we finish loading the data myStyle.display = 'block'; $('#" + this.MyPnl.ClientID + @"').block({ message: null, overlayCSS: { backgroundColor:'#fff', opacity: '0.7'} }); //Load the data if(guid != '') { displayIDFld.value = guid; } __doPostBack('" + UpdatePanel1.ClientID + @"',''); } }} </code></pre> <p>First, I don't understand why the __doPostBack() introduces such a delay in IE. If I take that and the prm.add_endRequest out, it's VERY speedy as no postback is happening.</p> <p>Second, I need a way to pop up this control and refresh the data so that it is still interactive. I'm not married to an UpdatePanel, but I haven't been able to figure out how to do it with a Web Service/static page method. As you can see this control is loaded many times on the same page so page size and download speed is an issue.</p> <p>I'd appreciate any ideas?</p> <p>Edit: It's the same in IE 6 or 7. I'm thinking it has to do with IE's handling of the UpdatePanel, because the same code is much faster in FF and Chrome.</p> http://stackoverflow.com/questions/1793191/asp-net-between-loadviewstate-and-onload-is-a-problem 0 ASP.NET - Between LoadViewState() and OnLoad() Is a Problem Calvin Nguyen 2009-11-24T21:55:12Z 2009-11-26T16:32:21Z <p>Hi,</p> <p>I have a user control in an UpdatePanel. The user control has CheckBoxList, and can be dynamically created or deleted by UI action.</p> <p>In most cases it works fine. The problem occurs when:</p> <ol> <li>The parent page is loaded with one such user control pre-populated, say, with checkbox 'A' checked and checkbox 'B' unchecked.</li> <li>The user control is deleted by UI action. In other words, a PlaceHolder.Remove() call is made.</li> <li>The user control is re-added and checkbox 'B' is checked, both by UI action. Checkbox 'A' is unchecked as expected, since this is a fresh instance of the user control.</li> <li>A button to submit and process UI data is clicked. This button is also inside the UpdatePanel.</li> </ol> <p>During 4., the state of the user control gets wonky. It somehow sees both checkbox 'A' and checkbox 'B' as being checked. I tried manually clearing the CheckBoxList's selections in step 2., but this had no impact. I know the CheckBoxList's selections are incorrectly set between LoadViewState() and OnLoad(), but I'm not sure exactly when or how.</p> <p>Anyone have a read on this?</p> <p>Thanks,</p> <p>Calvin</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/1795617/how-does-ajax-updatepanel-let-only-refresh-perticular-part-of-page 0 How does Ajax UpdatePanel let only refresh perticular part of page Dot Net Developer 2009-11-25T09:12:00Z 2009-11-25T10:11:12Z <p>I got this question in Interview for post of SSE in ASP.NET. the interview asked me that which control u use to not get your full page refresh when u click on button. i answered that we use Ajax updatepanel for it. then he asked that explain that how does updatepanel do it happen. </p> http://stackoverflow.com/questions/1526700/bizarre-updatepanel-problem 0 Bizarre updatepanel problem. SLC 2009-10-06T16:33:57Z 2009-11-25T10:00:03Z <p>I have an updatepanel, with a bunch of things in that are generated dynamically.</p> <p>Among them are textboxes, and checkboxes. Each is created in code with Textbox t = new Textbox() and Checkbox c = new Checkbox and are added withotu altering any other properties.</p> <p>Later on when I hit "Save", I get the values. The Textbox value is whatever I typed in before I hit the save button, but the Checkbox is always false regardless of whether I checked it or not.</p> <p>Is there any explanation for this discrepancy?</p> http://stackoverflow.com/questions/1795621/asyncpostbacktrigger-disables-buttons 0 AsyncPostBackTrigger disables buttons... afsharm 2009-11-25T09:12:59Z 2009-11-25T09:39:39Z <p>I've a simple UpdatePanel and a button outside of it. I've introduced the button as an AsyncPostBackTrigger in the UpdatePanel. UpdatePanel itself works fine but the button does not. Whenever the button is clicked, its click handler does not run just like the button is not clicked at all!</p> <p>Why the button is not working and how can it be fixed?</p> <p><hr></p> <p>UPDATE: here is the markup:</p> <pre><code> &lt;asp:UpdatePanel ID="upGridView" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:GridView ID="grdList" SkinID="SimpleGridView" DataKeyNames="Key" runat="server" AllowPaging="True" PageSize="15" AutoGenerateColumns="False" Caption="&lt;%$ Resources: CommonResources, grdListCaption %&gt;" EmptyDataText="&lt;%$ Resources: CommonResources, grdListEmptyDataText %&gt;" OnRowEditing="grdList_RowEditing" OnPageIndexChanging="grdList_PageIndexChanging" OnRowCreated="grdList_RowCreated"&gt; &lt;Columns&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="btnDelete" EventName="Click" /&gt; &lt;asp:AsyncPostBackTrigger ControlID="btnNew" EventName="Click" /&gt; &lt;asp:AsyncPostBackTrigger ControlID="btnForward" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:Button ID="btnDelete" runat="server" SkinID="Button" Text="&lt;%$ Resources: CommonResources, btnDelete %&gt;" OnClick="btnDelete_Click" /&gt; &lt;asp:Button ID="btnNew" runat="server" SkinID="Button" Text="&lt;%$ Resources: CommonResources, btnNew %&gt;" OnClick="btnNew_Click" /&gt; &lt;asp:Button ID="btnForward" runat="server" SkinID="Button" meta:resourcekey="btnForward" OnClick="btnForward_Click" /&gt; </code></pre> http://stackoverflow.com/questions/1791617/double-postback-causes-selectedindexchanged-to-fire-which-fires-autopostback 0 Double postback causes SelectedIndexChanged to fire which fires AutoPostback Eugene Niemand 2009-11-24T17:25:08Z 2009-11-24T20:36:35Z <p>I have a Gridview in a UpdateTemplate. I have four template fields in the four different columns. Each TemplateField has an UpdatePanel with a control in it. All the columns are sortable and the Gridview is page-able. Three of the template fields has DropDowns in the UpdatePanel and one has a Textbox, all these controls have AutoPostBack = True. All the UpdatePanels have UpdateMode = Conditional and ChildrenAsTriggers = false.</p> <p>When I click sort or change page index and the results have not returned and do it again(click sort or page index) while it is busy the SelectedIndexChanged and TextChanged events fires on some of the controls.</p> <p>It seems that depending on when I do this some of the results has been refreshed and there events don't fire but some are still busy, and the second Postback halts the first one and thinks that the values have changed and fires there respective AutoPostBackt events. When all the events fired the grid then displays the intended result set that was expected from the first sort or page index change.</p> 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/1560260/masterpage-updatepanel-on-child-page 1 Masterpage + updatepanel on child page ATMILO 2009-10-13T13:28:42Z 2009-11-23T22:00:03Z <p>So I have a masterpage with a login that is in an update panel. I have a child page that has a literal control that should update when the login updates. What it doesn't do is reload the method I use to generate the content for that literal when it posts back. I tried to call the method on the child page from the master page once you click log in, but I get an error that the literal control cannot be found (because it exists on the child page not the master page). How would I reference that control in the masterpage to pass it to my method?</p> http://stackoverflow.com/questions/1783281/databound-listview-in-updatepanel 0 Databound Listview in UpdatePanel serbrech 2009-11-23T14:01:00Z 2009-11-23T14:01:00Z <p>Hello</p> <p>I am using a Listview in a usercontrol that I databind to a list of object in the page load event.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) return; BindListViews(); } private void BindListViews() { MyListView.DataSource = IncludeExpressions; MyListView.DataBind(); } </code></pre> <p>I need to handle inserting new items in the list. To do that, I added an InsertItemTemplate with a button that has "Insert" as command argument. I dont want to persist the data to the database until the user press the save button, at the bottom of the form. So in the ItemCommand event, Here is my code: </p> <pre><code> protected void Expression_ItemCommand(object sender, ListViewCommandEventArgs e) { var listView = (sender as ListView); var expressions = GetExpressions(listView); var newExpression = new Expression { CaseSensitive = ((CheckBox)e.Item.FindControl("CaseSensitiveCheckBox")).Checked, SearchText = ((TextBox)e.Item.FindControl("SearchTextTextBox")).Text, Scope = (Scope)Enum.Parse(typeof(Scope), ((DropDownList)e.Item.FindControl("ScopeDropDownList")).SelectedValue, true), Type = (Type)Enum.Parse(typeof(Type), ((DropDownList)e.Item.FindControl("TypeDropDownList")).SelectedValue, true), }; expressions.Add(newExpression); listView.DataSource = expressions; listView.DataBind(); UpdatePanelInclude.Update(); } private List&lt;Expression&gt; GetExpressions(ListView lv) { var expressions = new List&lt;Expression&gt;(); foreach (var row in lv.Items) { var searchText = ((TextBox)row.FindControl("SearchTextTextBox")).Text; ... expressions.Add(new Expression { CaseSensitive = caseSensitive, Scope = scope, Type = type, SearchText = searchText }); } return expressions; } </code></pre> <p>This works perfectly fine until I add an UpdatePanel around the listview. When I add an updatepanel, the Expression_ItemCommand handler is hit only every 2 clicks, eventhough the page is post back every click. While debugging, I can see that I do enter the Page_Load event of the page at each click on the Insert button, but it hits the Expression_ItemCommand only every 2 clicks. and reset the content of my listview when the ItemCommand is not hit. I smell ViewState problems here, but I can't figure out how to fix it.</p> <p>Here is what the markup looks like :</p> <p> </p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanelInclude" UpdateMode="Conditional" ChildrenAsTriggers="true" runat="server"&gt; &lt;asp:ListView ID="MyListView" OnItemCommand="Expression_ItemCommand" OnItemInserting="ExpressionInserting" OnDataBinding="ListViewDataBinding" InsertItemPosition="LastItem" runat="server" ItemPlaceholderID="itemPlaceHolder"&gt; </code></pre> <p> ... ... </p> <p>Any Idea how to solve this?</p> <p>Stéphane</p> http://stackoverflow.com/questions/1782873/asp-net-listview-ajax-update-panel 0 ASP.Net Listview & AJAX Update Panel Aneef 2009-11-23T12:30:45Z 2009-11-23T12:58:50Z <p>Guys,</p> <p>I have to create a listview which contains thumbnails of few items, and when we click on the more button it should display rest of the items in the same listview,. how do i achive this, i dont want to do a postback and i would like to do this with ASP.Net Listview and AJAX Update Panel, </p> <p>i went through the web and seems ppl are finding difficulties in this, do you have any suggestions or tips in doing this, any help is much appreciated.</p> 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/945019/how-do-i-use-pagerequestmanager-to-do-a-partialpage-post-back 0 How do I use PageRequestManager to do a PartialPage post back? ilivewithian 2009-06-03T14:15:33Z 2009-11-22T10:00:02Z <p>I am trying to update and updatepanel from javascript.</p> <p>The code I'm using works, but only seems to do a full page post back.</p> <pre><code>function RefreshAppearances() { var prm = Sys.WebForms.PageRequestManager.getInstance(); prm._doPostBack('&lt;%=Me.updAppearances.ID %&gt;', ''); } </code></pre> <p>When the updatepanels load event fires the <code>ScriptManager.IsInAsyncPostBack</code> always returns false.</p> <p>Why might this be happening?</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/1765343/update-panel-and-partial-rendering-and-asyncpostbacktriggers-only-firing-the-firs 0 Update Panel and partial rendering and AsyncPostBackTriggers only firing the first time with AjaxControlToolkit:ComboBox klogan 2009-11-19T18:08:13Z 2009-11-20T21:04:41Z <p>This should be a pretty simple thing to do with Update Panels, but I'm having troubles. I want to update the updatePanelSelectedVendors on vendorsComboBox selection change, when the gridview pages, and on the delete buttons in that panel. I don't want to refresh the vendor combox at all, but I don't want to do a full post back.</p> <p>The problem is that the async post back only happens the first selection change of the vendorsComboBox. I'm having similar panels with other update panels in this user control. How can I link them all together and only update on the triggers I set.</p> <pre><code>&lt;div class="containerBox vendorsSelectBox"&gt; &lt;asp:Label ID="lblVendors" runat="server" EnableViewState="false" AssociatedControlID="vendorsComboBox" CssClass="labelHeader" Text="Vendors" /&gt; &lt;br /&gt; &lt;asp:UpdatePanel ID="updatePanelVendorsSelect" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;ajaxToolkit:ComboBox ID="vendorsComboBox" runat="server" DataTextField="Name" DataValueField="VendorID" AutoPostBack="true" AutoCompleteMode="SuggestAppend" DropDownStyle="DropDownList" CssClass="CustomComboBoxStyle" CaseSensitive="false" AppendDataBoundItems="false" onselectedindexchanged="vendorsComboBox_SelectedIndexChanged"&gt; &lt;/ajaxToolkit:ComboBox&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;/div&gt; &lt;asp:Panel ID="panelSelectedVendors" runat="server" CssClass="containerBox selectedFranchiseBox"&gt; &lt;label class="labelHeader"&gt;Selected Vendors&lt;/label&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;asp:UpdatePanel ID="updatePanelSelectedVendors" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional"&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="vendorsComboBox" EventName="SelectedIndexChanged" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; &lt;asp:GridView ID="selectedVendorsList" runat="server" AllowPaging="True" Width="250" DataKeyNames="VendorID" AutoGenerateColumns="False" SkinID="gridViewSkin" onrowdatabound="selectedVendorsList_RowDataBound" onpageindexchanging="selectedVendorsList_PageIndexChanging"&gt; &lt;Columns&gt; &lt;asp:TemplateField HeaderText="Remove?" ItemStyle-Width="10"&gt; &lt;ItemTemplate&gt; &lt;asp:CheckBox ID="checkBoxSelect" runat="server" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" /&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;br /&gt; &lt;asp:Button ID="buttonDeleteSelectedVendor" runat="server" Text="Delete Selected Vendor" EnableViewState="false" SkinID="button" style="display:none; float:left; width:150px;" onclick="buttonDeleteSelectedVendor_Click" /&gt; &lt;asp:Button ID="buttonClearSelectedVendors" runat="server" Text="Delete All" SkinID="button" style="float:right; margin-right:25px;" Visible="false" onclick="buttonClearSelectedVendors_Click" /&gt; &lt;/asp:Panel&gt; </code></pre> <p>EDIT: I changed vendorsComboBox to a regular DropDownList and the partial post backs worked the way I expected. Why doesn't it with the ComboBox control?</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/802506/problem-with-scriptmanager-registerstartupscript-in-webcontrol-nested-in-updatepa 3 Problem with ScriptManager.RegisterStartupScript in WebControl nested in UpdatePanel Chris 2009-04-29T14:04:36Z 2009-11-20T01:52:35Z <p>Hello, </p> <p>I am having what I believe should be a fairly simple problem, but for the life of me I cannot see my problem. The problem is related to ScriptManager.RegisterStartupScript, something I have used many times before.</p> <p>The scenario I have is that I have a custom web control that has been inserted into a page. The control (and one or two others) are nested inside an UpdatePanel. They are inserted onto the page onto a PlaceHolder:</p> <pre><code>&lt;asp:UpdatePanel ID="pnlAjax" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:PlaceHolder ID="placeholder" runat="server"&gt; &lt;/asp:PlaceHolder&gt; ... protected override void OnInit(EventArgs e){ placeholder.Controls.Add(Factory.CreateControl()); base.OnInit(e); } </code></pre> <p>This is the only update panel on the page.</p> <p>The control requires some initial javascript be run for it to work correctly. The control calls:</p> <pre><code>ScriptManager.RegisterStartupScript(this, GetType(), Guid.NewGuid().ToString(), script, true); </code></pre> <p>and I have also tried:</p> <pre><code>ScriptManager.RegisterStartupScript(Page, Page.GetType(), Guid.NewGuid().ToString(), script, true); </code></pre> <p>The problem is that the script runs correctly when the page is first displayed, but does not re-run after a partial postback. I have tried the following:</p> <ol> <li>Calling RegisterStartupScript from CreateChildControls</li> <li>Calling RegisterStartupScript from OnLoad / OnPreRender</li> <li>Using different combinations of parameters for the first two parameters (in the example above the Control is Page and Type is GetType(), but I have tried using the control itself, etc).</li> <li>I have tried using persistent and new ids (not that I believe this should have a major impact either way).</li> <li>I have used a few breakpoints and so have verified that the Register line is being called correctly.</li> </ol> <p>The only thing I have not tried is using the UpdatePanel itself as the Control and Type, as I do not believe the control should be aware of the update panel (and in any case there does not seem to be a good way of getting the update panel?).</p> <p>Can anyone see what I might be doing wrong in the above?</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1740558/asp-net-ajax-pageload-with-multiple-updatepanels 0 ASP.NET AJAX pageLoad() with multiple Updatepanels Chris 2009-11-16T07:08:13Z 2009-11-19T21:39:54Z <p>Greetings,</p> <p>I'm working with some guys who are developing an app with Update Panels.</p> <p>I'd like to use the jQuery datepicker on a textfield that is part of a row that can be added multiple times via this update panel, and I've got the JavaScript below to work successfully:</p> <pre><code>function pageLoad(sender, args) { if(args.get_isPartialLoad()) { $(".datepicker").datepicker({ //rebind to all step datepickers duration: '' }); } } </code></pre> <p>However, there are multiple update panels on this page so it's being trigged when they all update - is there a way to add a parameter or similar so this only fired when that specific event is needed?</p> <p>Thanks, Chris</p> http://stackoverflow.com/questions/1764232/how-to-stop-aspupdatepanel-async-call-from-calling-pageload 0 how to stop asp:UpdatePanel async call from calling pageload ErnieStings 2009-11-19T15:45:51Z 2009-11-19T21:35:29Z <p><strong>Using:</strong> ASP.NET, C#, Javascript</p> <p>I have a page which calls a javascript function on pageload which binds several events to elements. The page also contains an update panel. When an asynchronous postback is made the pageload function is called again and the events are binded. This has some undesireable consequences on the page and i was wondering if anyone could help me out.</p> <p>Thanks in advance,</p> <p>Shawn</p> http://stackoverflow.com/questions/293524/ajax-callback-updatepanel-update-still-reloading-whole-page 0 Ajax callback UpdatePanel.Update() still reloading whole page oo 2008-11-16T04:56:40Z 2009-11-19T13:23:48Z <p>I have code in an Update Panel and even though on a button click i am inserting data into a db and simply calling Updatepanel.Update() the whole page is reloaded:</p> <p>Gifts.ASPX</p> <pre><code>&lt;table style="width:100%;"&gt; &lt;tr&gt; &lt;td&gt; &lt;asp:Label ID="Label2" runat="server" Text="Gift"&gt;&lt;/asp:Label&gt; &lt;/td&gt; &lt;td&gt; &lt;asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:TextBox ID="txtNewGift" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; </code></pre> <p>Gifts.aspx.CS</p> <pre><code>protected void cmdAddGift_Click(object sender, EventArgs e) { OleDbConnection objConn = new OleDbConnection(DataSource); Random r = new Random(); int giftID = r.Next(1200, 14000); OleDbCommand objCommand = new OleDbCommand("Insert into Gifts (GiftID, Description) values (" + giftID + ",'" + txtNewGift.Text + "')", objConn); ExecuteCommand(objCommand); PopulateGifts(objConn); txtNewGift.Text = ""; UpdatePanel3.Update(); } </code></pre> <p>Any ideas why this whole page would reload instead of just the textbox getting update?</p> http://stackoverflow.com/questions/1393216/where-to-use-update-panel 0 where to use update panel Rohit 2009-09-08T10:32:00Z 2009-11-18T11:00:04Z <p>I have a custom treeview which i create programmatically as there is a need of specific layout which is not achievable using asp.net treeview.It is on a master page.When i click on treenodes the content area refreshes after a postback.There is a page category.aspx which is a content page of this master page.I have a user control in that content area named products.aspx.Now i want to use ajax to prevent the postback which happens when i click on treenode.I tried putting user control in updatepanel and treeview as well in updatepanel but to no awail.</p> <p>How to use updatepanel in this scenerio.</p> http://stackoverflow.com/questions/534438/imagebutton-event-not-firing-inside-update-panel 0 ImageButton event not firing inside Update Panel Xaisoft 2009-02-10T22:08:24Z 2009-11-18T10:53:26Z <p>This is sort of a follow-up to my question here: </p> <p><a href="http://stackoverflow.com/questions/534045/asplabel-is-not-shown-when-visible-is-set-to-true">http://stackoverflow.com/questions/534045/asplabel-is-not-shown-when-visible-is-set-to-true</a></p> <p>In the above question, I had a few controls were the visibility was not being set to false because they were not in an UpdatePanel. Once I put the controls inside an UpdatePanel, the toggling of visibility worked, but this has caused me another problem. I have an ImageButton that exports to excel. When the button was not in an update panel, the click event fired, but now that I put it inside and update panel, the click event does not fire.</p> <p>I also have a dropdown which works fine. I am thinking it has something to do with the fact that the ImageButton does not have an AutoPostBack property.</p> <p>Thanks, XaiSoft</p> http://stackoverflow.com/questions/1439234/updatepanel-contol-and-moving-to-top-of-page 0 UpdatePanel contol and moving to top of page jumbojs 2009-09-17T14:26:13Z 2009-11-17T18:49:14Z <p>Hello</p> <p>I have an asp.net page that is using an UpdatePanel control. When you're on the page and you click the continue button, the page does a partial refresh and you're left in the same scroll position you were before the refresh. How do I ensure that on partial refreshes with the UpdatePanel control that you return to the top of the page.</p> <p>thanks</p> http://stackoverflow.com/questions/1699516/upload-fails-once-then-works-correctly 2 Upload fails once, then works correctly Sophia 2009-11-09T07:07:51Z 2009-11-17T04:51:17Z <p>I'm working on an ASP.Net custom control. In my control I have a FileUpload control, inside a MultiView, inside an AJAX UpdatePanel.</p> <p>I've added the submit button to the post back triggers of the update panel. (This is the standard fix for getting a FileUpload to work within an UpdatePanel).</p> <p>On the first submit the FileUpload does not upload anything (ie, the control's FileBytes property has zero length). Everything else on the form submits properly.</p> <p>On the second and subsequent submits, the upload works correctly.</p> <p>What could cause this, and how do I fix it?</p> <p><hr></p> <p>For example:</p> <pre><code>&lt;asp:UpdatePanel runat="server" ID="update_panel" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:MultiView runat="server" ID="mvMultiView" ActiveViewIndex="0"&gt; &lt;asp:View runat="server" ID="viewOne"&gt; &lt;!-- content --&gt; &lt;/asp:View&gt; &lt;asp:View runat="server" ID="viewTwo"&gt; &lt;!-- some other form elements --&gt; &lt;asp:FileUpload ID="file_upload" runat="server" /&gt; &lt;asp:Button ID="save_button" runat="server" Text="Save" OnClick="save_Click" ValidationGroup="group" /&gt; &lt;/asp:View&gt; &lt;/asp:MultiView&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:PostBackTrigger ControlID="save_button" /&gt; &lt;/Triggers&gt; &lt;/ajax:UpdatePanel&gt; </code></pre> http://stackoverflow.com/questions/1514354/gridview-page-in-updatepanel-dropping-1-row 1 GridView Page in UpdatePanel dropping 1 row vipergtsrz 2009-10-03T17:32:34Z 2009-11-17T04:00:03Z <p>I have a basic gridview with paging enabled. I have 11 rows in my database and the gridview's page size is 10. When I come to the page, it shows 10 rows, and in my pager, it shows me on page one with a link to a second page. When I click on the second page, it refreshes the page and goes to page 2 and displays the 11th, lonely row. </p> <p>When I put an update panel around it, however, it drops the last row. When I come to the page, it shows the same as without the update panel. It shows 10 rows with page 1 and 2 on the pager. When I click on page 2, however, it does it's ajax thing, but doesn't display the last record on the 2nd page. Then, if I go from page 2 back to page 1, it only displays 9 rows instead of the 10 it used to display. </p> <p>For some reason, when I have an update panel around my gridview, after you page once, it never displays the last row. I have tried all the different combinations of RenderMode, ChildrenAsTriggers and UpdateMode to no avail. I also have a form on the page that allows you to add new rows to the database, and consequently the gridview as well as an edit and delete link inside the gridview, all within the update panel. When I add a new row via the form or edit/delete, this doesn't happen...it only happens when I page.</p> <p>Any ideas why the gridview won't display the last record/row after I page only when it's inside an update panel?</p> <p>Here is the code...</p> <p>ASPX</p> <pre><code>&lt;asp:UpdatePanel runat="server" ID="uPnl" ChildrenAsTriggers="true" RenderMode="Block" UpdateMode="Always"&gt; &lt;ContentTemplate&gt; &lt;asp:Panel runat="server" ID="pnlAddComment" CssClass="addComment" DefaultButton="btnSubmitComment"&gt; &lt;h1 class="postComment"&gt;Post Comment&lt;/h1&gt; &lt;asp:TextBox runat="server" ID="txtName" CssClass="txtName"&gt;&lt;/asp:TextBox&gt; &lt;ajaxToolkit:TextBoxWatermarkExtender ID="txtNameW" runat="server" TargetControlID="txtName" WatermarkText="- Type your name here -" WatermarkCssClass="txtNameWatermark" /&gt; &lt;asp:RequiredFieldValidator runat="server" ID="reqName" ControlToValidate="txtName" Display="Dynamic" ErrorMessage="Please enter your name" ValidationGroup="comment"&gt;&lt;/asp:RequiredFieldValidator&gt; &lt;asp:TextBox runat="server" ID="txtComment" TextMode="MultiLine" CssClass="txtComment"&gt;&lt;/asp:TextBox&gt; &lt;ajaxToolkit:TextBoxWatermarkExtender ID="TBWE2" runat="server" TargetControlID="txtComment" WatermarkText="- Write anything you'd like about this event -" WatermarkCssClass="txtCommentWatermark" /&gt; &lt;asp:RequiredFieldValidator runat="server" ID="reqComment" ControlToValidate="txtComment" Display="Dynamic" ErrorMessage="Please enter your comment" ValidationGroup="comment"&gt;&lt;/asp:RequiredFieldValidator&gt; &lt;div class="buttons"&gt; &lt;asp:Button runat="server" ID="btnSubmitComment" ValidationGroup="comment" Text="Submit Comment" /&gt; &lt;span class="loader"&gt;Saving&lt;/span&gt; &lt;/asp:Panel&gt; &lt;h1&gt;Recent Comments&lt;/h1&gt; &lt;a name="comments"&gt;&amp;nbsp;&lt;/a&gt; &lt;asp:GridView runat="server" ID="gvComments" DataKeyNames="CommentID" PagerSettings-Position="TopAndBottom" AllowPaging="true" PageSize="10" AutoGenerateColumns="false" GridLines="None" CssClass="comments"&gt; &lt;Columns&gt; &lt;asp:TemplateField&gt; &lt;ItemTemplate&gt; &lt;div class="comment user"&gt; &lt;p&gt; &lt;img src="images/icon.gif" width="46" height="55" /&gt; &lt;%#Eval("UserComment")%&gt; &lt;span&gt; Posted by &lt;%#Eval("UserName")%&gt; &lt;br/&gt; on &lt;%#Format(Eval("DateCreated"), "MM/dd/yyyy")%&gt; at &lt;%#Format(Eval("DateCreated"), "h:mm tt")%&gt; &lt;/span&gt; &lt;asp:LinkButton runat="server" CausesValidation="false" ID="lnkEdit" CssClass="edit" CommandName="Edit" Text="Edit"&gt;&lt;/asp:LinkButton&gt; &lt;asp:LinkButton runat="server" ID="lnkDelete" CommandArgument='&lt;%#Eval("CommentID")%&gt;' CssClass="delete" OnClientClick="return confirm('Are you sure you want to delete this comment?');" CausesValidation="false" OnClick="DeleteComment" Text="Delete"&gt;&lt;/asp:LinkButton&gt; &lt;/p&gt; &lt;/div&gt; &lt;/ItemTemplate&gt; &lt;EditItemTemplate&gt; &lt;div class="comment user"&gt; &lt;p&gt; &lt;img src="images/icon.gif" width="46" height="55" /&gt; &lt;label&gt;Name:&lt;/label&gt; &lt;asp:TextBox runat="server" ID="txtNameEdit" Width="240" Text='&lt;%#Eval("UserName")%&gt;'&gt;&lt;/asp:TextBox&gt;&lt;br /&gt; &lt;label&gt;Comment:&lt;/label&gt; &lt;asp:TextBox runat="server" TextMode="MultiLine" ID="txtCommentEdit" Width="240" Height="100" Text='&lt;%#Eval("UserComment") %&gt;'&gt;&lt;/asp:TextBox&gt; &lt;asp:LinkButton runat="server" ID="lnkCancel" CommandName="Cancel" CssClass="cancel" CausesValidation="false" Text="Cancel"&gt;&lt;/asp:LinkButton&gt; &lt;asp:LinkButton runat="server" ID="lnkUpdate" CommandName="Update" CssClass="update" CausesValidation="false" Text="Update"&gt;&lt;/asp:LinkButton&gt; &lt;/p&gt; &lt;/div&gt; &lt;/EditItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;PagerStyle CssClass="grdFooter" HorizontalAlign="right" /&gt; &lt;PagerSettings PageButtonCount="7" /&gt; &lt;/asp:GridView&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>VB Code Behind</p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not IsPostBack Then bindComments() End If End Sub Private Sub bindComments() gvComments.DataSource = dataaccess.getdataset("SELECT * FROM Comments ORDER BY DateCreated DESC", Data.CommandType.Text) gvComments.DataBind() End Sub Protected Sub gvComments_RowEditing(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles gvComments.RowEditing gvComments.EditIndex = e.NewEditIndex bindComments() End Sub Protected Sub gvComments_RowCancelingEdit(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewCancelEditEventArgs) Handles gvComments.RowCancelingEdit gvComments.EditIndex = -1 bindComments() End Sub Protected Sub gvComments_PageIndexChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewPageEventArgs) Handles gvComments.PageIndexChanging gvComments.PageIndex = e.NewPageIndex bindComments() End Sub Protected Sub btnSubmitComment_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSubmitComment.Click Dim userType As String = "attendee" If Not IsNothing(Request.QueryString("user")) AndAlso Request.QueryString("user").Length &gt; 0 Then userType = Request.QueryString("user") End If dataaccess.NoReturnQuery("INSERT INTO Comments (UserName, UserComment, UserType) VALUES ('" &amp; txtName.Text.Replace("'", "''") &amp; "','" &amp; txtComment.Text.Replace("'", "''").Replace(vbCrLf, "&lt;br /&gt;") &amp; "','" &amp; userType &amp; "')", Data.CommandType.Text) txtComment.Text = "" txtName.Text = "" gvComments.PageIndex = 0 bindComments() End Sub Sub DeleteComment(ByVal sender As Object, ByVal e As System.EventArgs) Dim lnk As LinkButton = TryCast(sender, LinkButton) If Not IsNothing(lnk) AndAlso IsNumeric(lnk.CommandArgument) Then dataaccess.NoReturnQuery("DELETE FROM Comments WHERE CommentID = " &amp; lnk.CommandArgument, Data.CommandType.Text) bindComments() End If End Sub Protected Sub gvComments_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles gvComments.RowUpdating Dim row As GridViewRow = gvComments.Rows(e.RowIndex) Dim txtCommentEdit As TextBox = CType(row.FindControl("txtCommentEdit"), TextBox) Dim txtNameEdit As TextBox = CType(row.FindControl("txtNameEdit"), TextBox) dataaccess.NoReturnQuery("UPDATE Comments SET UserComment = '" &amp; txtCommentEdit.Text.Replace("'", "''").Replace(vbCrLf, "&lt;br /&gt;") &amp; "', UserName = '" &amp; txtNameEdit.Text.Replace("'", "''") &amp; "' WHERE CommentID = " &amp; gvComments.DataKeys(e.RowIndex).Value, Data.CommandType.Text) gvComments.EditIndex = -1 bindComments() End Sub Protected Sub gvComments_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvComments.RowDataBound Dim lnkDelete As LinkButton = CType(e.Row.FindControl("lnkDelete"), LinkButton) If Not IsNothing(lnkDelete) Then If Request.QueryString("user") = "admin" Then lnkDelete.Visible = True Else lnkDelete.Visible = False End If End If Dim lnkEdit As LinkButton = CType(e.Row.FindControl("lnkEdit"), LinkButton) If Not IsNothing(lnkEdit) Then If Request.QueryString("user") = "admin" Then lnkEdit.Visible = True Else lnkEdit.Visible = False End If End If End Sub </code></pre> http://stackoverflow.com/questions/1727674/div-innerhtml-problem-with-updatepanel 1 div innerHTML problem with updatepanel asif 2009-11-13T07:22:00Z 2009-11-17T02:31:27Z <p>I have an application developed in asp.net which set innerhtml of div. I am creating an html string to show googlemap. It works fine. But when I put my div inside update panel. it doesnt show googlemap in div. Here is my aspx file code:</p> <p> <br> <br> </p> <pre><code> &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="4"&gt; &lt;asp:UpdatePanel ID="UpdatePanel2" runat="server"&gt; &lt;ContentTemplate&gt; &lt;div id="map_canvas" runat="server" style="width: 100%; height: 1500px; margin-bottom: 2px; text-align: center;"&gt; &lt;asp:Panel ID="Panel1" runat="server"&gt; &lt;%--Place holder to fill with javascript by server side code--%&gt; &lt;asp:Literal ID="js" runat="server"&gt;&lt;/asp:Literal&gt; &lt;%--Place for google to show your MAP--%&gt; &lt;div id="Div1" style="width: 100%; height: 728px; margin-bottom: 2px;"&gt; &lt;/div&gt; &lt;br /&gt; &lt;/asp:Panel&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="btnShow" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/td&gt; &lt;/tr&gt; </code></pre> <p>here is my button click event.</p> <pre><code>protected void btnShow_Click(object sender, EventArgs e) { // works fine without update panel. map_canvas.InnerHtml = showMapWithPoints(); } </code></pre> http://stackoverflow.com/questions/1744954/trailing-slash-in-url-causing-partial-post-back-issues 0 Trailing slash in URL causing Partial Post Back issues LookitsPuck 2009-11-16T21:25:26Z 2009-11-16T23:00:21Z <p>Hey all!</p> <p>.NET 3.5 app written in C# here with both jQuery and some ASP.NET AJAX UpdatePanel flavouring. I'm running into an interesting issue. I created a pagination user control that is made up of LinkButtons. The user control fires off an event called CurrentPageChanged whenever someone clicks on a page, previous, first, or next buttons. The page using this pagination control is then responsible for getting the newest set of records based on the pagination control item clicked.</p> <p>Now, the issue I'm running into is this: If I have a url like this: <a href="http://localhost:2798/user/9794/profile" rel="nofollow">http://localhost:2798/user/9794/profile</a>, everything works fine. However, if I have a url with the trailing slash (i.e. <a href="http://localhost:2798/user/9794/profile/" rel="nofollow">http://localhost:2798/user/9794/profile/</a>), my UpdatePanel falls on its face with a 405 error.</p> <p>The exception in question is this:</p> <blockquote> <p>[Exception] Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 405</p> </blockquote> <p>Now, I looked at the requests through Chrome's Developer Tools, and I see that it's requesting this url: <a href="http://localhost:2798/user/9794/profile/profile" rel="nofollow">http://localhost:2798/user/9794/profile/profile</a>. It looks like if there's a trailing slash, it'll append an extra path.</p> <p>Any ideas how I can get around this?</p> http://stackoverflow.com/questions/1740877/sifr-3-issue-ie-with-blockui-and-updatepanel 0 sIFR 3 issue (IE) with BlockUI and UpdatePanel Markis 2009-11-16T08:44:49Z 2009-11-16T22:05:36Z <p>I am experience an issue using sIFR 3, jQuery BlockUI and an UpdatePanel where the page refreshes and the SIFR font disappears.</p> <p>In the Javascript file I use to handle the blocking and unblocking of the UI, I detect the partial postback and unblock the UI:</p> <p>prm.add_endRequest(function() { $.unblockUI(); });</p> <p>If I re-run sIFR.replace() in this code block the font sIFR font is rendered, but # characters are replacing my page title (in the top of the browser window/tab). This seems to only happen in IE (go figure.) Each time I refresh the page using the LinkButton an extra # character is added, so my page title ends up looking like "#########". Any idea why this is happening?</p> <p>Is there a specific sIFR.update() function I should be running instead? If I execute sIFR.redraw() or sIFR() I get javascript run time errors.</p> http://stackoverflow.com/questions/1112476/sifr-3-doesnt-work-with-update-panel 0 sifr 3 doesn't work with update panel sagivo 2009-07-10T23:50:30Z 2009-11-16T14:26:49Z <p>hi, i'm using sifr 3 and i'm doing font replacement inside updatepanel. after postback the flash disappear and i get the pld font instead. what to do? please help me. thanks ;)</p> http://stackoverflow.com/questions/1737500/how-to-change-asplabel-content-in-updatepanel-after-update 0 How to change asp:Label content in UpdatePanel after update? Mike 2009-11-15T13:15:21Z 2009-11-15T13:19:37Z <p>I have an asp:Label inside an update panel that I need to update from both the server application and client side Javascript. I can update the label fine before the first UpdatePanel refresh by setting label.innerHTML. The server changes the label correctly during a panel update. After the update, setting label.innerHTML from client Javascript no longer changes the value shown in the browser.</p> <p>How can I find the label to continue to update it from Javascript after an UpdatePanel update?</p>