AutoPostBack

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All

I am a bit confused about AutoPost Back. My concept about AutoPostBack is that If AutoPostBack i
"TRUE" for a Web Form the Web Form Goes back to the server and displays a fresh copy of th
Web Form on the Browser. While If an AutoPostBack is False then the Web Form Stays on the
browser and does not take a trip to the server

Please let me know If I am saying correct

Any help much appreciated

cheers
Sunil Sabi
 
not really.
AutoPostBack is usually on a control, it causes the controls activation to
call the server. It's not a "fresh" copy of the page but rather all form
values are maintained and processed depending on the event and what is in it
(ie: button click, dropdown selectedIndexChange, etc).

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com


Sunil said:
Dear All,

I am a bit confused about AutoPost Back. My concept about
AutoPostBack is that If AutoPostBack is
 
AutoPostBack is normally applied to controls. It states, when a control is
changed and/or loses focus, the form submits back.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
Sunil said:
Dear All,

I am a bit confused about AutoPost Back. My concept about
AutoPostBack is that If AutoPostBack is
 
worth noting that autopostback requires javascript be enabled in the
browser, so is not guaranteed to work in all cases.

-- bruce (sqlwork.com)
 
I was focusing more on what objects AutoPostBack is connected to, but the
point is well taken. It is certain that a person could write an elaborate
site that did not work.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
 
Back
Top