Questions tagged [partial-postback]

64 questions
13
votes
3 answers

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 function is and how to work with it programatically,…
ihumanable
  • 494
  • 1
  • 4
  • 9
11
votes
2 answers

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 page. The update panel looks like…
Neil
  • 737
  • 1
  • 8
  • 23
6
votes
3 answers

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 data on the page. This all works fine. I set up…
uscere90
  • 533
  • 1
  • 5
  • 12
5
votes
3 answers

Angular template and .NET Partial Postback

I have a trouble to get angular working with .Net partial postbacks. Question is basically same to this : Re-initialize Angular bindings after partial postback Basically I have a tab on which I have angular app, then I have second tab with some c#…
Daniel F
  • 53
  • 9
4
votes
4 answers

jquery Hide/Show not working after partial postback of the page

I had a webform with some cascading dropdowns and a Submit Button. On Click of the Submit Button, I am getting data from database.The Whole webform is in update panel including Button. Thing is that, I am trying to show Update Progress in the…
Bhanu Chandra
  • 390
  • 6
  • 26
4
votes
1 answer

Checkboxlist inside UpdatePanel triggers full postback when an item is checked

So I have this Checkboxlist and I want to implement a Select All feature for the elements inside it. I placed it inside an UpdatePanel, but everytime I click an item, the entire page is reloaded. This is my code:
4
votes
3 answers

Javascript in a user control doesnt fire when partial postback occurs in .NET

I am trying to understand a bit about partial postbacks using updatepanels and while lots of things are stumping me, this one has me baffled. I am using tabs inside of a UpdatePanel and becuase this is an data entry application, I am putting the…
Kiemo
  • 47
  • 1
  • 6
3
votes
2 answers

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 call in this code and how to load…
Gambler
  • 31
  • 1
  • 1
  • 2
3
votes
1 answer

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 complicated and the user may decide to abandon their…
Matt Rogish
  • 22,940
  • 11
  • 72
  • 92
2
votes
2 answers

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 , the selected index is province "SK" which loads…
Gotcha
  • 799
  • 1
  • 12
  • 23
2
votes
1 answer

How to Control or Stop Partial Post Back in Update 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 know is i can write the necessary code in function…
Jabir Ahamed
  • 23
  • 1
  • 3
2
votes
2 answers

In ASP.NET MVC how best to design/code asynchronous partial postback of

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 majority of data is for viewing only. However,…
2
votes
1 answer

Partial postback compatibility to numbers in animations

I have recently added an animation to a design: .map > img:hover { -webkit-animation-name: MapFloatingChrome; -webkit-animation-duration: 3s; -webkit-animation-iteration-count: infinite; …
Lajos Arpad
  • 45,912
  • 26
  • 82
  • 148
2
votes
1 answer

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 postback is different. In using ASP.Net 2.0, if that…
Tim Goodman
  • 20,835
  • 7
  • 54
  • 80
2
votes
1 answer

Sys.WebForms.PageRequestManagerTimeoutException during server-side debug

Often during debug of server-side VB.NET/C# code that is executed inside of ASP.NET partial postack (UpdatePanel, other controls with AJAX behaviors) I am getting this client-side error: At this point I do not care about client-side (and at runtime…
Yuriy Galanter
  • 35,167
  • 11
  • 60
  • 119
1
2 3 4 5