Tuesday 16 February 2021

MVC - Fix Error - 0x800a138f - JavaScript runtime error: Unable to get property 'form' of undefined or null reference

 Watch this example on YouTube


 To fix it replace

@using (Html.BeginForm("", "", new { @id = "frm" }))
{

with

@using (Ajax.BeginForm("", "",null, new { @id = "frm" }))
{

 

No comments:

Post a Comment