Tagged Questions
The partial-postback tag has no wiki summary.
3
votes
1answer
501 views
Rails: In-place editor but no postback?
I'm using Prototype in my Rails project to do in-place editing (via Ajax.InPlaceEditor) of a form. However, I don't want it to immediately post back and do the update - the form itself is pretty ...
3
votes
3answers
2k views
What is a Partial Postback?
I'm an experienced web developer in several different web technology stacks. I currently work in .Net and I've become curious about the Partial Postback.
I understand what the Partial Postback's ...
1
vote
2answers
102 views
C# onClick Event on ASP.NET Button not initially fired but postsbacks… and eventually fired after multiple clicks
I'm having a weird issue and i'm not sure where to look or how to debug.
I have a Parent Page A which has a Combo box control with 7 provinces; Each Province has a User Control ( View ). By default , ...
1
vote
1answer
138 views
ASP.NET Update Panel Updates only Once
Hi I have an Update Panel like this
<asp:UpdatePanel ID="Updatepanel1" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="RadioButtons1" ...
1
vote
3answers
433 views
Persist c# objects across postbacks
I've got an asp.net page that has c# code-behind that does some stuff in the Page_Load() method (like query a database and make a few other calls to populate objects with data). I then display this ...
1
vote
1answer
243 views
ASP.NET Partial postback issue
I have an ImageButton which, when clicked, calls a code-behind method that does some work and also changes the state of the ImageButton. I want to do a partial postback so that the entire page ...
1
vote
2answers
851 views
In ASP.NET MVC how best to design/code asynchronous partial postback of <DIV>
On a MVC View (.aspx) enclosed in a Form, there are several controls - grids, textboxes - that display data relating to a subject, a person. The form does not require a submit button because the great ...
1
vote
1answer
556 views
Disabling viewstate on drop down list causes problems
I have a page that has two drop down lists on it and a button. All controls sit in an update panel. The first drop down list (ddl1) contains a lot of values which caused a huge viewstate so I disabled ...
1
vote
2answers
2k views
User control inside update panel causing full page postback
I have a user control with linkbuttons (used for paging) and a repeater inside an update panel. The paging works correctly, but is causing a full page postback every time I click through to the next ...
1
vote
1answer
663 views
What's the difference between a Callback and a Partial Postback?
Is there a difference, or are the terms synonymous?
Sorry if this has been asked before, I could only find the difference between a full postback and a callback. I'm already aware of how a full ...
1
vote
1answer
374 views
ASP.net UpdatePanel - Works first time then fails
I have a simple update panel that contains an ASP DataList. It shows a list of documents and their approval status. Here is some sample markup
<asp:UpdatePanel ID="upDocuments" runat="server" ...
1
vote
6answers
821 views
Partial PostBack and actions on client side
I've got two DropDownLists. First is visible and second is not. I'd like to have something like this:
Select value from first DDL.
Then partial postback occurs - the data is retrieved from DB ...
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
2answers
267 views
Update Panel refresh on code behind function call in C# - Ajax
I am using Uploadify v2.1.4 to upload images using ASP.Net C# FM 4.0.
In this page i have other controls also, but i want a functionality in such a way that when i upload images it should ...
0
votes
1answer
58 views
How to link ASP Asynchronous Postback with jQuery function
So I have a page with an < asp:UpdatePanel > every time that UpdatePanel updates my jQuery function is thrown out.
Right now I'm making sure the function fires when a user mouses over ...
0
votes
0answers
103 views
ExtJs GridPanel html being lost in ASP.NET Ajax partial postback. How to re render it?
I'm working on customizing a complex ASP.NET application. I have sucessfully rendered an ExtJS GridPanel into a div - that is working nicely. Unfortunately, anytime there's a partial postback, the ...
0
votes
2answers
98 views
ASP.NET Script after partial postback
I have a web page to modify a script that show the weather info of a certain city.
In this page, users can change the city by loading a different script. This script is copied from a weather site, as ...
0
votes
1answer
76 views
Which is the best place to stroe data inside session before partial postback?
I have a user control on my .aspx page. It contains two text boxes and two drop down lists. Now on button click event another user control has been added,but before partial post back occur, I want to ...
0
votes
1answer
383 views
Jquery Modal popup opens on second click not on first
i got stuck with jquery modal dialog. my modal shows by clicking twice on the button and spoils the markup also on the page
i read no of posts including stack overflow
this
AND this
but my issue ...
0
votes
2answers
250 views
How to Control or Stop Partial Post Back in Upadate Panel
i have been using update panels , all i need is whenever a partial post back is done , i need to check for a condition which decides whether to proceed that post back to server or not
for now all i ...
0
votes
1answer
205 views
non-server controls and partial postbacks
I'm inserting some non-server controls (plain html controls) dynamically into an update panel using jQuery.
If I do a full postback, I can get the values of those controls using Request.Form, ...
0
votes
1answer
741 views
On ajax request we get this error:Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed
I am having an issue which is really bizzare and after searching through the internet all day I have found nothing that has helped.
We went live with our website www.promatenvision.co.uk last week ...
0
votes
2answers
2k views
jQuery is not working after partial postback
I have this jquery functions below in external file. So after partial postback jquery is not working. I need to load jquery from server side on partial postback.
can someone show me what I need to ...
0
votes
1answer
722 views
LinkButton inside UpdatePanel disappears after partial page postback
I have a linkbutton inside a updatepanel and when the update panel does a partial page rendering, the linkbutton disappears.
<asp:UpdatePanel ID="up" runat="server" ChildrenAsTriggers="true" ...
0
votes
1answer
95 views
Preserve Data-structure on AJAX postback
Partial Class ClientCenter_UpdateSub
Inherits System.Web.UI.Page
Structure PInfo
Dim Name As String
Dim Surname As String
End Structure
Dim OldPInfo As New ...
0
votes
1answer
1k views
Making a difference between AsyncPostbacks in nested UpdatePanels in Asp.Net AJAX
In an ASP.net AJAX project (WebForms),I have an UpdatePanel, and in UpdatePanel i have multiple nested Controls with UpdatePanels, basically i have control trees.
The Parent Control is huge and very ...
0
votes
5answers
601 views
How can I update an UpdatePanel in a control from the page?
I have a modal on a page that also contains a user control. When clicking the 'OK' button in the modal, I would like to update an updatepanel that is contained within the user control on the page. I ...
0
votes
1answer
971 views
Redirect to Refer on Partial View Form Post using ASP.NET MVC
I'm looking for a best practice suggestion.
I've got a ShoppingBag Controller with a Partial that lists all the items in the user's bag. In this Partial you can remove items from the bag via a form ...