18
votes
4answers
2k views
Difference between a Postback and a Callback
I keep on hearing this words 'callback' and 'postback' tossed around.
What is the difference between two ?
Is postback very specific to the ASP.NET pages ?
14
votes
4answers
1k views
What is the difference between Page.IsPostBack and Page.IsCallBack?
I've recently ran into some code that checks Page.IsCallBack but I wasn't sure how it is different from Page.IsPostBack. Can anyone enlighten me?
Edit: Are they mutually exclusive or can both occur …
10
votes
9answers
4k views
JQuery UI Dialog with Asp .NET button postback..
Hello ...
I have a JQuery UI Dialog working great on my Asp .NET page:
jQuery(function() {
jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: …
6
votes
6answers
508 views
What methods are available to stop multiple postbacks of a form in ASP.NET MVC?
A common web problem is where a user clicks the submit button of a form multiple times so the server processes the form more than once. This can also happen when a user hits the back button having …
5
votes
2answers
146 views
Refreshing/Reloading side effect with ASP.net?
I'm relatively new at web & ASP.Net development, so bear with me. In the course of testing our web pages, I noticed that if a user were to click "Refresh/Reload", and clicks "Retry" when prompted …
5
votes
3answers
4k views
How do I make an onclientclick post back using jquery? asp.net
Hey guys,
I need help. I want to recreate the the update panel postback without using a update panel to do the postback. What is the generic method for doing this?
For example, on stackoverflow, …
4
votes
4answers
1k views
Properly implement a webpart with postback?
What I'm trying to do is to create a webpart that has a textbox where you can set the value of a literal (h2) on the webpart and a "save" button that posts back and then sets the literal accordingly. …
4
votes
3answers
1k views
ASP.NET MVC doesn’t work with ViewState and Postback?
Perhaps this is a naive question. In my understanding, ASP.NET cannot work with ViewState and Postback which is fundamentals of ASP.NET forms. Is that correct?
If that's it, then all ASP.NET Web …
4
votes
6answers
423 views
What is really stored in Session in ASP.NET?
We are trying to decide how to handle object persistence accross postbacks, to avoid getting the data from the database in every request, and I'm leaning towards using Session (it's an intranet …
4
votes
6answers
822 views
How can I create buttons and hook up events from postback
I need to generate buttons initially based on quite a processor and disk intensive search. Each button will represent a selection and trigger a postback. My issue is that the postback does not …
4
votes
9answers
4k views
How to check if page is postback within reserved function pageLoad on ASP.NET AJAX
I'm looking for a way to check within pageLoad() if this method is raised during load event because of a postback/async postback or because of being loaded and access the first time.
This is similar …
3
votes
4answers
487 views
Asp.Net - page refresh(F5) do not restore the initial value of TextBox
this is the simple code:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
txt.Text = "Original";
}
}
first load. text box state is "Original".
manually …
3
votes
5answers
531 views
Custom Server Control causes full postbacks inside of UpdatePanel
I have a custom server control that seems to work fine until I put it in an UpdatePanel. Once inside the UpdatePanel it continues to work fine but the UpdatePanel now does full postbacks when my …
3
votes
4answers
226 views
Postback or Callback?
I was wondering what to take into consideration when deciding between a full postback or a quick callback.
There are two extremes: You could do it the "old" way, where every user action causes a …
3
votes
8answers
5k views
ASP.Net: User controls added to placeholder dynamically cannot retrieve values.
I am adding some user controls dynamically to a PlaceHolder server control. My user control consists of some labels and some textbox controls.
When I submit the form and try to view the contents …
