Tuesday, 15 November 2011

difference between Inline and Codebehind code in asp.net ?

Inline Code is mixing client and serverside code on the same page like HTML and JavaScript. So precompilation is no need.
CodeBehind .aspx separately only for serverside code. So it provides good performance than inline code. Why because CodeBehind needs to be compile in advance.

No comments:

Post a Comment