Like in java the entry point is public static void main(String[] args). What is the entry point in ASP.NET using C#? Usually, I see the page load method, is that the entrance point?
Does asp.net follows some different criteria?
|
Like in java the entry point is Does asp.net follows some different criteria? |
||||
|
|
|
You said something wrong.
You might want to compare servlets/JSP and ASP.NET, don't you? Servlets vs IHttpHandlerThey are, conceptually, the same thing. They are also both interfaces. Their configuration is different (WEB.xml VS Web.config or .ashx file), but their entry points are "almost" the same. Servlet:
IHttphandler:
JSP vs ASP.NET pagesIf you define a constructor, or override the
Execution is not concurrent as it seems, but since you can't know the exact order in which controls will raise the same event, you can go as the VHDL example in which you can't read the value of a registry before the next clock tick. There are several events: here are the most important in their execution order
|
|||
|
|
|
You need to take a look at the ASP.NET life-cycle: |
|||
|
|
|
There is no "main point" in asp.net. What you would think of as "main" in asp.net is code that's already written for you. Instead, you inherit a base class ("Page"). As part of this, you can (but don't have to) implement several event handlers. Through the process of building a page, Asp.Net will raise these events for you to handle. The process of running through these events in order is called the page lifecycle. For your case, there are several options depending on what you want the main method to do:
|
||||
|
|