Can anyone explain to me what is ASP.NET is all about?

  • Thread starter Thread starter mag
  • Start date Start date
M

mag

Guest
Can anyone explain to me what is ASP.NET is all about?? Is it similar to Visual Basic??
Give me some websites that i can refer to.
 
it's basically a software platform ( programs to be simple ) that create dynamic Web pages .
For example , u send a form to Web server to inquire about the date on the server ; then the Web server passes the request to the ASP.Net page ,which processes any ASP code and send the results back as HTML to the Web server ,which in turn sends it to ur PC...
 
asp.net is sucessor to asp. asp was a set of tools for IIS the web server in windows OS that used vbscript (not VBA, but very similar) to create dynamic web pages, often by calling databases through oledb.

asp.net isn;t just a new version of asp, but a total rework (as vb.net, is not vb). asp.net can be written in any .net language, usually vb.net or C#, and has many built in controls for handling features such as user registration and login, retrieving and updating database or xml data, validating form data (both in browser through javascript and on the server side in events).

asp.net is alot like vb.net. if you place a few button on a web page, the code view with have onclick and other events for each button. When viewed in browser , clicking a button sends a "postback" (a call to the same webpage, but with relevant changes included in the post data), which then causes the webserver to execute the appropriate code.
 
Back
Top