Hi guys,
I have Microsoft Visual Web Developer 2010 Express.
I created a New project
Select ASP.NET MVC 3 web application (C#)
A dialog appears ,In the Dialog "Project template = Select Empty" , "View Engine = Selected Razor" , "tick HTML5 semantic Markup"
Add a controller (HomeController), In Scaffolding option give Empty controller
In the HomeController.cs Replace public ActionResult Index() with below code.
public string Index()
{
return "DIL Hello from Home";
}
choose Debug/Start Debugging.
You get error "JavaScript runtime error: Operation aborted"
Can someone help me with this.
Thanks in Advance
Stella