vote up 1 vote down star

Are there any caching/performance/significant differences between c# code placed in <script runat='server'></script> as oppose in the code-behind?

flag

53% accept rate

3 Answers

vote up 5 vote down check

No, no performance difference, in the end this is always compiled to an assembly anyway.

link|flag
There seems to be a difference. Compilation errors within the <script runat="server"/> tag are caught not when the project compiles but when it gets hit at runtime. – burnt1ce Sep 24 at 20:10
vote up 1 vote down

No, it gets compiled to the same thing.

I suggest you use the code-behind file, in order to separate logic and markup.

link|flag
vote up 1 vote down

The number one significant difference to me is readability.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.