UpdatePanel is an ASP.NET AJAX control which allows page content to be updated asynchronously.

learn more… | top users | synonyms

1
vote
2answers
13 views

UpdatePanel within jQuery.load()-ed content breaks out of the page on postback

As a preface to my situation, it should be noted that I am using ASP.NET (C#) and jQuery. So, here's the layout: I have a top div (header/menu) that spans the entire horizontal length of the page. ...
0
votes
0answers
13 views

using update panel stable with sharepoint 2013

I have a simple form which have some dropdownlists and textboxes in it. It works well when I run it as .net web project. when I move the project to sharepoint and add whole design part in update ...
0
votes
2answers
43 views

Button in UpdatePanel triggers event, but the page doesn't update

Here's the markup: <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <div class="well well-large"> <form class="navbar-form ...
0
votes
0answers
3 views

asp.net clear bfcache update panel in safari

I'm trying to clear bfcache in Safari. I found a js solution here that works without an update panel, but when I add an update panel it stops working. Prevent safari loading from cache when back ...
0
votes
1answer
33 views

ASP.NET trigger update panel by _dopostback

I have an FormView inside updatepanel, they are wrapped in modal dialog(bootstrap). When user click on "Edit" button, but then decide to close the diaglog, I need to switch the formview from ...
0
votes
0answers
16 views

C# linkbutton not firing in Gridview within Updatepanel

I'm hoping someone can help me. I have searched the web for a suitable answer but haven't found one. I have the following linkbutton in a gridview (GridView2) which is within an Updatepanel set to ...
-1
votes
1answer
29 views

Literal Control text rendering doesn't work in Update Panel

In my ASP.NET app I have Update Panel and Custom server control in it. This Custom control has inside Literal Control. I try to set it's text property programmatically. But it doesn't render, because ...
0
votes
1answer
28 views

ASP.NET USERCONTROL WITH UPDATE PANEL INSIDE PAGE UPDATE PANEL

I have a master page with the Scrip manager. Have one page that use the master page and inside of this page i have an updatepanel. Inside this update panel i call a UserControl that have inside other ...
-1
votes
2answers
48 views

ASP Button Event not firing into UserControl UpdatePanel

I have a page with an UpdatePanel that calls a UserControl with another UpdatePanel. The LinkButton event into the user control UpdatePanel is not firing. <asp:UpdatePanel ID="updPost" ...
0
votes
1answer
35 views

Invoke webservice from javascript to refresh an update panel

I'm having a hard time figuring out how to do this, Heres what I am trying to do: I have a webpage containing statuses of users I've chose to follow(Something like facebook's statuses). Now what am ...
0
votes
2answers
23 views

Jquery Validation and updatepanel,

$(document).ready(function () { $("#formIsValid").val("false"); $('#form1').validate({ rules: { <%= CmyCd.UniqueID %>: { required:true }, ...
2
votes
1answer
38 views

when I use the DropDownList1_SelectedIndexChanged to be the trigger of UpDatePanel,it dosn't work

And the tip is the “DropDownList1” didn't find “DropDownList1_SelectedIndexChanged” </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> ...
0
votes
1answer
28 views

Modify an UpdatePanel by calling server-side code from client code

It's possible that there's no way to do this, but I figure I would ask. I'm relatively new to asp.net, having played with it for about a week now. What I have right now is a page that calls a web ...
0
votes
1answer
33 views

c# asp - UpdatePanel is causing a full page postback rather than just posting back itself

I have a page with generated update panels like so: foreach(DataRow r in GetSteps(ID).Rows) { UpdatePanel StepPanel = new UpdatePanel(); StepPanel.ID = "stepPanel_" + ...
0
votes
2answers
65 views

css hover menu stops working after Update Panel renders elements

I am using <ul> <li> menu on master page. For menu hover I am using csshover.htc file. I am <updatepanel> on my child pages, but when I click on any link or button inside update ...
0
votes
0answers
14 views

show/hide busy icon on dropdown change

I want to show a small loading icon when i change the dropdown list selection and while the data loads in a gridview. I added an updatepanel to the page and inserted the drop down within the update ...
3
votes
1answer
30 views

Why are exceptions in partial postback (UpdatePanel) not logged to eventlog

In a standard postback, if an exception occurs, the error is logged to the event log under the source "ASP.NET 4.0.30319.0". Lots of good details here. If an exception occurs during a partial ...
0
votes
1answer
73 views

UpdatePanel working only on Chrome and not in IE / Mozilla. Why?

On Clicking the LinkButton, I refresh the image in image control without refreshing the page. For this I have used the UpdatePanel and AsyncPostBackTrigger. It is working perfectly in chrome. But not ...
0
votes
2answers
72 views

How to get an ASP.NET page_load event to trigger AJAX UpdatePanel update

I have a page in ASP.NET which has some updatepanels on it. After the page has loaded, I want the updatepanels to trigger the updatepanels to update. I'm working using this answer which says to put ...
1
vote
2answers
87 views

Need to refresh drop down after we have inserted newly values in database

I have a Page where I am using 2 user controls. One control is reservation control and other is channel partners control. On reservation control I have a drop down which has all the channel partners. ...
0
votes
1answer
36 views

Cell Value in gridview

I could post several links to articles of people asking the very same question, not necessarily on stackoverflow. but i dont know why this does not work for me. i have: int rowIndex = ...
0
votes
2answers
53 views

Update UpdatePanel from code behind on System.timers.timer elapsed event

Is it possible, using asp.net and vb.net as the code behind, to update an UpdatePanel on a System.Timers.Timer elapsed event? I know a timer control is available, but please help me to do this with ...
0
votes
1answer
12 views

ASP.NET AJAX UpdatePanels Will Not Detect Other UpdatePanel Changes

I have two update panels on one web page. They are both set to UpdateMode="Conditional". They are not nested. My problem is that when I want a control on UpdatePanelOne to update a control on ...
0
votes
1answer
82 views

Call a function after every updatepanels partial postback event, on the page

I am working on a custom control that is being used on a webpage that contains many updatepanels. In my custom control, there is extensive use of jquery and many plugins are used as well. Now, on ...
0
votes
0answers
57 views

Could not call Webservice on second time c#

I use a web service to insert new user. It works well while i insert the data for the first time. When i insert it immediately i am not getting any response. Please find the code below. SCServiceAPI ...
-4
votes
0answers
50 views

Use same UpdatePanel for several webs [closed]

I need to use a component "UpdatePanel" for task of search. Can I use this UpdatePanel in severals webs? This should return a "id".
0
votes
1answer
34 views

avoid page reload and controls' state setting to default on hitting back button

I have two pages, Page1 and Page2. On page1, I have a checkbox below it an update panel and few controls in update panel such as radio button and combo boxex. This is my client side. ...
1
vote
2answers
33 views

Update panel and scrolling issue

I have an update panel which fires when I click a button and I've ran into a problem when the users scrolls after clicking the button. Basically if the user clicks the button then scrolls down the ...
0
votes
1answer
43 views

text is not allowed between the opening and closing tags update panel

Why am not sure, why I am receiving this warning or error for my update panel, text is not allowed between the opening and closing tags update panel Here;s markup <script ...
0
votes
1answer
69 views

textbox ontextchanged event is firing in update panel but throws error on client side

i have two div on page. when first time page load it shows first div which has 2 radio button. if you select second button it does postback and hides first div and shows second div. which has textbox ...
2
votes
1answer
46 views

UpdatePanel sometimes refreshing entire page

Even though I am using an update panel, sometimes my entire page is refreshed, and I can't figure out why. (Edited to take into account Jason P's answer.) Masterpage code: <form runat="server" ...
0
votes
0answers
25 views

Updatepanel not disposing all content inside of it (Tripel collapsible table)

I'm making a table with 2 subtables for each line. The biggest problem of this table is getting the data to the page in low amounts of time. Therefor the sub tables only can get drawn if they click ...
1
vote
0answers
40 views

nextAll getting objects from a List View not behaving as expected

I copied this solution to make the enter key behave like the tab one, from what it says in the post it should work properly. My problem is that the focus is not changing between the inputs (Text ...
2
votes
0answers
101 views

Drop Down List resets

My drop down list resets to default when I try to select a item, and it also doesn't trigger's code behind method when I put a line break and try to debug it: Here's markup, <script ...
1
vote
2answers
83 views

Drop Down List Selected Index changed not working in Update panel

I have a drop down list in UpdatePanel_2, it gets populated when Button_1 is clicked in UpdatePanel_1. My ddlist markup is, <asp:DropDownList id="drop1" runat="server" EnableViewState="true" ...
0
votes
1answer
31 views

Disposed button still disposed after postback when in updatepanel

I have a table with buttons. The problem it has is when you click one button a new table gets drawn. When the new table is drawn the button is still clickable and if you press it again the page will ...
0
votes
2answers
27 views

Dynamically adding images using UpdatePanel

I'm trying to dynamically create images in a table but it seems like the UpdatePanel is not updating. I have the following code in my .aspx page. <%@ Page Language="C#" AutoEventWireup="true" ...
1
vote
1answer
146 views

server side button click event not firing inside UpdatePanel

I have a user control which is using updatepanel. when the page first loads the button click is working fine and the is shown in a DIV...when i search again and hit the button, click event is not ...
2
votes
2answers
98 views

ASP.NET text box loses text on partial postback

I have a user control, In user control I have a button, which when is clicked, shows a message box , message box has a textbox and another button, when I click on another button, I need to get ...
0
votes
1answer
28 views

User checks checkbox and scrolls down, vertical position moves back to before scrolling of user

The issue im having is a user checks the checkbox and scrolls down, the vertical position moves back to before scrolling of user about a second later. I have a checkbox inside a repeater, the ...
0
votes
0answers
210 views

file upload inside user control inside masterpage update panel how to set trigger

I have a asp.net 3.5 application with the following structure: masterpage (with update panel) nested masterpage content page multiple user controls (with file uploads) Obviously there is an issue ...
0
votes
1answer
73 views

Stop and Restart ASP.NET Timer

I have an ASP.NET Timer control on my web page. The timer is used as a trigger for an UpdatePanel. Once the content of this panel is loaded, I disable the Timer using Timer.Enabled = false; in the ...
0
votes
1answer
57 views

Manually trigger Update Panel

I have an UpdatePanel in the page. Inside this UpdatePanel, I have a control which has a button. Is it possible to Manually add a postback trigger for this button (which is inside the user control) in ...
0
votes
0answers
96 views

Dropdown list in update panel not causing selected index changed in ie8 and ie9

I have an dropdown list in update panel. It dont cause selected index changed only in ie8 and ie9. I have tried adding postback triggers and async postback trigers in designer, and in code behind. ...
0
votes
2answers
71 views

ASP.NET button works with alerts but not triggering page_load or code behind method

I have a ASP.NET button with in a update panel, if I put alert('hello'), it works otherwise if I put code behind method, it doesn't work, any ideas ? <asp:Button ID="Button1" ...
0
votes
0answers
73 views

Spinning Circle ASP.NET TabContainer UpdatePanel Ajax Control Toolkit

My final goal is to update a series of TextBoxes and Gridviews in a TabContainer. The TabContainer is inside an UpdatePanel. It is my understanding that the TabContainer must itself be in a ...
1
vote
2answers
113 views

radGrid control not showing data in aspx page

I have an asp.net application (created by a previous developer) that uses a RadGrid control to display data. However, the RadGrid does not show data if there is an on the page. The radGrid works fine ...
0
votes
2answers
61 views

Can I add HTML button triggers to update panel

Is it possible to add HTML input buttons to asp.net triggers, as I have a message box it works perfectly for a gridview which is in update panel, but when I go to a different page of gridview, ...
0
votes
0answers
49 views

User control in place holder button is not working with update panel

I have a aspx page like this. There is place holder on to it. I load the user controls in this place holder dynamically, when i click on a particular button. <asp:UpdatePanel runat="server" ...
0
votes
0answers
26 views

updating a panel by ImageButton in a repater via update panel

i want to update my popup panel by a imageButton whick is placed in a repater. without post back whole page, i just want to change the information displayed in modal popupextender. code is as ...

1 2 3 4 5 42