Tagged Questions
The update-panel tag has no wiki summary.
3
votes
2answers
178 views
Asynchronous loading of user controls in a page
I have created a page to display multiple user controls inside update panels. Some user controls will get loaded faster and some may take a longer time to load. Now when the page loads, it waits for ...
2
votes
1answer
677 views
RegisterClientScriptCode not working after a partial post back
The following lines of code are in a user control in a SharePoint website.
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "jquery144", "<script type=\"text/javascript\" ...
1
vote
2answers
792 views
Does the page load event still fire if a control is inside an update panel?
I have a page with part of a listview control inside an update panel. When a button is clicked in the listview I modify some data and call this.databind to refresh the data. It appears that the page ...
1
vote
1answer
2k views
Redirect the parent frame inside an UpdatePanel on PostBack
This is kind of a weird problem, but I have to create a search box for our site that will be iframed on another site. When the user clicks the search button, it needs to redirect the parent frame to ...
0
votes
0answers
5 views
Update panel should hide div xyz and show progress bar untill success message is displayed
I have a simple send email form, When i submit the form it should show me progress animation and hide the main div containing form element and show the other div with success message like you mail has ...
0
votes
0answers
33 views
Strange URL encoding when doing a postback with chrome
I have a asp.net page with an updatepanel. This page accepts querystrings with "strange" characters. For example:
http://myweb.com/mypage.aspx?title=Planificaci%F3n
In IE and Firefox, when a ...
0
votes
2answers
50 views
onclick of any link the web user control is loaded without post back
i have a aspx page and in which\
Add Edit Delete
ABC GRIDVIEW
DEF
GHI
on click of any side link let ABC , DEF etc the Gridview related to that is opened
the ...
0
votes
1answer
49 views
Controls inside the dynamically added web user control does not retain there value on post back caused by the dropdown list
i am dynamically adding and removing a different user control from a to a place holders.
The user controls have lot of asp.net controls like cascading dropdowns with autopostback true.
The whole ...
0
votes
1answer
29 views
Accessing the value of a dynamically added Control inside Update panel
I have a page which contains an update panel and inside it, we have a placeHolder which will be populated with a textbox when button1 is pressed.
Now I neeed to access the value entered in the ...
0
votes
0answers
65 views
asp.net button control not working in update panel with asynchonous file upload
I am working with ASP.Net and AJAX control toolkit 3.5. I put an update panel and put 5 asp.net buttons in it. Then put 5 asp.net panels in it.The intension behind this was when we click on button ...
0
votes
1answer
67 views
Can't assign values to the textbox inside a Panel
As written in the title I have problems assigning values to the textbox inside a panel. The problem is that a button from gvAsseti doesn't show the pnlAsset (which has textboxes in it) and doesn't ...
0
votes
1answer
219 views
Gridview with checkboxes inside Update Panel, problem with paging and back button
I'm using a Gridview, the first column are checkboxes.
The Gridview uses paging and sorting.
The checkboxes are inside of a UpdatePanel because I'm using the CheckedChanged event when a checkbox is ...
0
votes
1answer
32 views
2 Updates Panels execution parallel
I have 2 update panels each with a refresh button to reload the contents.
When i click on the refresh button it takes 10 seconds to reload the contents, meanwhile before its contents are fully ...
0
votes
1answer
382 views
multiple postback events in an update panel
I have an update panel containing several divs which utilize jquery ui's draggable. On drag stop i want to do a postback which only effects the update panel.
This works fine, but before continuing ...
-1
votes
3answers
123 views
How to call UpdatePanel1.Update() method from another page in ASP.NET
I have Default.aspx with several controls along with Uploadify Image upload control and i am call another file UploadImages.aspx File to upload image using jQuery, I upload images using general C# ...