I'm getting an error in JavaScript
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
I'm getting an error in JavaScript
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
Triple equals, ===
, in javascript is to test for the same type or object.
Change it to double equals, ==
instead. This will test for the value instead of object equality.
Possible duplicate of these questions:
===
well.