Possible Duplicate:
What is the 'page lifecycle' of an ASP.NET WebForm?
I have studied a lot of article on execution process in .net. What i found is that
Language code(C#,vb, j# etc.) ----> language compiler ---> MSIL code -----> now this MSIL code is processed by just-in-time which is inside CLR
this process is okay for class library execution or windows app or console app but in asp.net we have a .aspx page + a code behind (c#, vb etc.)...In that case how this execution process takes place ?