Are there any caching/performance/significant differences between c# code placed in <script runat='server'></script> as oppose in the code-behind?
|
|
|
|||
|
|
|
|
No, no performance difference, in the end this is always compiled to an assembly anyway. |
||
|
|
|
No, it gets compiled to the same thing. I suggest you use the code-behind file, in order to separate logic and markup. |
||
|
|
|
|
The number one significant difference to me is readability. |
||
|
|
