Click here to Skip to main content
15,913,115 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: uploading the file Pin
prolibertine29-Dec-06 3:53
prolibertine29-Dec-06 3:53 
Questionhow to dynamically adding rows in html table ? Pin
Tridip Bhattacharjee28-Dec-06 19:32
professionalTridip Bhattacharjee28-Dec-06 19:32 
AnswerRe: how to dynamically adding rows in html table ? Pin
Arindam Tewary28-Dec-06 20:18
professionalArindam Tewary28-Dec-06 20:18 
AnswerRe: how to dynamically adding rows in html table ? Pin
Arindam Tewary28-Dec-06 21:23
professionalArindam Tewary28-Dec-06 21:23 
Questionhow could i directly attach any output stream content to placeholder control or image control in asp.net? Pin
Tridip Bhattacharjee28-Dec-06 19:32
professionalTridip Bhattacharjee28-Dec-06 19:32 
Questionhow to render a image in aspx page in it's original size?? [URGENT] Pin
Tridip Bhattacharjee28-Dec-06 19:31
professionalTridip Bhattacharjee28-Dec-06 19:31 
Questionwhat is the difference btn callback() and Ispostback() Pin
sridevi1428-Dec-06 19:17
sridevi1428-Dec-06 19:17 
AnswerRe: what is the difference btn callback() and Ispostback() Pin
Arindam Tewary28-Dec-06 19:47
professionalArindam Tewary28-Dec-06 19:47 
Just the way internally .NET framework handles it ...
You have to know the way these two happens ..

      PostBack                                   Callback
============================        =====================================

A Post request to server               Fired by a client side event handler
( Can be made only by a server        ( Can be made by a client side
 side element.)                                    element)
          |                                          |
      Page init                                   Page-Init
          |                                          |
    Load the page state                      Load the page_state
          |                                          |
Prcess the postback data                    Process Postback data
          |                                          |
      Page Load                                  Page Load
          |                                          |
   Any Postback event                    CallBack events( As defined    
(Like SelectedIndexChnaged,              in ICallBackEventhanler 
PageIndexChanged methods executed )     Like RaiseCallBackEvent() method )
          |                                          |
 Save the page state                                 |
          |                                          |
   Page PreRender                                    |
          |                                          |
     Page Render                                     |
          |                                          |
     Page Unload                                 Page Unload
          |                                          |
Response Back to the Client               Response Back to the Client

As you can see ...
1. Callback can be initited from a client side element.
   But Postback can be initiated by a server side element.
2. Internal mechanism is totally different.
3. For callback ICallbackEventHandler must be implemented.
4. Some page state is not there. So it becomes faster that PostBack.

Hope it helps you ...Smile | :)

Arindam
GeneralRe: what is the difference btn callback() and Ispostback() Pin
sridevi1428-Dec-06 19:53
sridevi1428-Dec-06 19:53 
QuestionTree View control Pin
diya_dev28-Dec-06 19:04
diya_dev28-Dec-06 19:04 
QuestionHow to upgrade a .dll file in vb.net Pin
dotnethunk28-Dec-06 19:01
dotnethunk28-Dec-06 19:01 
AnswerRe: How to upgrade a .dll file in vb.net Pin
diya_dev28-Dec-06 19:07
diya_dev28-Dec-06 19:07 
GeneralRe: How to upgrade a .dll file in vb.net Pin
dotnethunk28-Dec-06 19:15
dotnethunk28-Dec-06 19:15 
GeneralRe: How to upgrade a .dll file in vb.net Pin
diya_dev28-Dec-06 21:01
diya_dev28-Dec-06 21:01 
GeneralRe: How to upgrade a .dll file in vb.net Pin
dotnethunk29-Dec-06 2:37
dotnethunk29-Dec-06 2:37 
Questionexternal debugger window Pin
kannan m28-Dec-06 18:55
kannan m28-Dec-06 18:55 
QuestionHow can I find time that it is taking Pin
indian14328-Dec-06 17:45
indian14328-Dec-06 17:45 
AnswerRe: How can I find time that it is taking Pin
Not Active28-Dec-06 18:15
mentorNot Active28-Dec-06 18:15 
AnswerRe: How can I find time that it is taking Pin
Arindam Tewary28-Dec-06 19:09
professionalArindam Tewary28-Dec-06 19:09 
QuestionBulk insert from asp.net 2005 to oracle Pin
montu337728-Dec-06 16:44
montu337728-Dec-06 16:44 
AnswerRe: Bulk insert from asp.net 2005 to oracle Pin
Vikram kshatriya28-Dec-06 18:25
Vikram kshatriya28-Dec-06 18:25 
GeneralRe: Bulk insert from asp.net 2005 to oracle Pin
Arindam Tewary28-Dec-06 19:20
professionalArindam Tewary28-Dec-06 19:20 
GeneralRe: Bulk insert from asp.net 2005 to oracle Pin
montu33772-Jan-07 6:05
montu33772-Jan-07 6:05 
QuestionADO.net data set or XML file ? Pin
danaliasdan28-Dec-06 12:46
danaliasdan28-Dec-06 12:46 
AnswerRe: ADO.net data set or XML file ? Pin
Not Active28-Dec-06 17:35
mentorNot Active28-Dec-06 17:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.