A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Save click not working
Guhananth S
1
Reputation point
Hi
I have
<%#Html.Beginform("PricingParial","Pricing","Post")
{
Autocomplete text box with client name. has clientid and name
<input type="button" text="Save" id="btnSave">
}
%>
Incontroller
public ActionResult PricingParial(Pricing criteria)
{
return View("PricingPartial",criteria);
}[HttpPost]
public ActionResult PricingParial(Pricing criteria,FormCollection fm)
{
var getitems =_service.GetData(criteria.ClientId); get values from database as List<Dictionarty<string,object>
return View("Pricingpartial",criteria);
}
bind the result to jqgrid
how to do
Developer technologies | ASP.NET Core | Other
Developer technologies | ASP.NET Core | Other
Sign in to answer