Monday 22 October 2018

Developing web application

INTRIDUCTION TO WEB APPLICATION DEVELOPMENT USING ASP.NET 

Web application hve revolutions enable organization to share and access information anywhere , anytime . This has mojarly moved the focus information development from desktop application to web application s. Today one of the most seerver side technoliges use fof developing web applications is ASP.NET

Figure web development 



First code web development 


public class Homecontroller :controller
{
public string index()
{
return " Hello form Home.index()";
}
}

in  this precedind code snippet, an action method .index() is created in the homecontroller controller class . Hrre return type of the index () action method is string instead of the ActionReturn , when a use invoke the proceding index()
action method using url,httplocalhost  , the index action method sends the string hello from home . index to the browser 






code Hello from home .index()

No comments: