views:

31

answers:

3

does redirecting from grid using javascript increase performance in asp.net

+1  A: 

Yes it definetly does increase your performance as there is no postback, user doesn't have to wait. There is no server side processing as well.

Happy coding.

Ravia
thanx all of you for your response
Neo
+1  A: 

Hey,

Reloading a grid using javascript would increase performance. Redirecting to another page using javascript, in replacement of a hyperlink or something, would not be much difference.

Brian
A: 

If your javascript redirect is saving a postback then its definitely improvement in performance otherwise not.

Manoj