Difference between Server.Transfer and Response.Redirect
| Sno | Server.Transfer | Response.Redirect |
| 1 | The navigation happens on the server-side ,so client history is not updated | The navigation happens on the client-side ,so client history is updated |
| 2 | Data can be persist accros the pages using Context.Item collection | Context.Items loses the persisitance. |
| 3 | No Round-trips | Makes a Round-trip |
| 4 | Has Good encapsulation | No |
0 comments
Post a Comment