how ajax.beginform works in mvc ?
avnish
242
Points
11
Posts
|
Answers
Rahul M...
4916
Points
27
Posts
|
Hi Avnish, Ajax.Beginform is not same as update panel in webform technology. Ajax.Beginform:
Html.BeginForm:
Ajax.Beginform Example: 1. Add Controller as: using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcApplication1.Controllers
{
public class Default1Controller : Controller
{
//
// GET: /Default1/
public ActionResult Index()
{
return View();
}
public ActionResult AjaxForm()
{
return View();
}
[HttpPost]
public ActionResult AjaxForm(FormCollection collection, string button)
{
return Content("Textbox value :"+ collection.GetValue("textajax").AttemptedValue + "<= Ajax updated successfully..");
}
}
}
2. _layout view as: <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
<script src="~/Scripts/jquery-1.7.1.min.js"></script>
<script src="~/Scripts/jquery.unobtrusive-ajax.min.js"></script>
</head>
<body>
@RenderBody()
</body>
</html>
3. AjaxForm View as: @{
ViewBag.Title ="AjaxForm";
Layout ="~/Views/Shared/_Layout.cshtml";
}
<h2>AjaxForm</h2>
@using (Ajax.BeginForm("AjaxForm", "Default1", new AjaxOptions { LoadingElementId = "Loadingdiv", UpdateTargetId = "updatetable", HttpMethod = "post" }))
{
<div id="Loadingdiv" style="display:none;">loading...</div>
<input name="textajax" />
<button>submit ajax</button>
}
<table id="updatetable"></table>
Posted On:
03-Sep-2015 04:42
See more detail here: http://www.niceonecode.com/Blog/DotNet/MVC/AJAX-Helpers-(Ajax_BeginForm(),-Ajax_ActionLink())-in-ASP_NET-MVC/13 - Brian 09-Jan-2018 23:49
|
Blog
Active User (0)
No Active User!