Performance issue

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

Guest

Hello -

If I have a choice of putting everything on one Webform page or splitting it
between four pages, should I opt to use the four to improve performance?
Will it really make any difference? All of these pages (or one if I choose
to use one) access a Sql Server 2000 database.

Thanks in advance for your response.
 
Hi Sandy,

Excellent question. You are correct in that splitting functionality betwen
pages will improve performance. The most salient reason is that code that is
in one of the other classes doesn't have to be loaded when it is not used.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
Thanks, Kevin!

Kevin Spencer said:
Hi Sandy,

Excellent question. You are correct in that splitting functionality betwen
pages will improve performance. The most salient reason is that code that is
in one of the other classes doesn't have to be loaded when it is not used.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
Back
Top