Wednesday, November 20, 2013

ALL ABOUT ASP.NET

ASP.NET

Hi, friends, thanks for visiting my page!
In this blog we going to learn about what is asp.net in .net framework environment and how it should be used in a simple way.

Introduction:
The asp.net is a webpage development framework from microsoft with the help of using css, javascript, jquery preferably for online transaction website design.
Many of the online transaction websites ending with url aspx is designed with the asp.net environment.
In simple example it is like simplified html used for website design in development environment.

Description
The normal way of html coding will be little difficult to build a server side communication website, hence asp.net simplified tags are used for easy purpose.
For example:

in Html button we use:
              <input id="Button1" type="button" value="button" />

whereas in asp.net:
               <asp:button runat="server" text="Button" />

as we know that in client - server architecture, we just see the screen in our end where as the back end process is done by the server side, hence if we use asp.net control which already assign to work in server side tag will be helpful to create the web application.

See this image taken from visual studio by inserting asp button,

When we run in browser this asp.net code converts to html by web browser,



If you like my post like fb page and google +, thank you!
And also share your ideas about asp.net as knowledge should be shared from many to many for better understanding....



No comments:

Post a Comment