views:

118

answers:

1

I have many aspx page includes in my web form. I want to convert them to user controls. Just wanted to confirm whether there is any performance gain in doing so? I have 50 pages in which the aspx page is included.

+3  A: 

The idea of user controls isn't to improve performance, but to improve maintainability and reuse of code.

Paul
And also it gives You possibility to communicate between main page and controls.
Rafal Ziolkowski