Asp.net is a server side programming language. When a client(browser) requests an Asp.net web page from the server, the server executes the asp.net page and sends the output in the form of HTML page. The client browser then takes the Html code and constructs a page for viewing on your browser.
Thus the user is unable to see the asp.net code, Thus it provides the most important feature of "SECURITY"
The Asp.net page includes a code runat="server". This little code line means that everything will be executed at server. So unlike HTML file that does all the work in the client browser, the processing is done on the server and returned to the client as HTML.
No comments:
Post a Comment