TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Anshuman Sharma
NA
91
4.1k
How to call action method using ajax in mvc5
Nov 25 2016 2:21 AM
dear all,
how to call the Action method from the side menu item click using ajax...???
my controller is
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult About()
{
ViewBag.Message = "Your application description page.";
return View();
}
public ActionResult Contact()
{
ViewBag.Message = "Your contact page.";
return View();
}
}
and site menu on layout is
Dashboard
Database
Amma Zaan
once we click on any link it should open the respective view in renderbody() without postback.
Reply
Answers (
3
)
Getting error in LINQ
How to Increase the Send Request limits of NServiceBuss.