Currently, I am facing an issue with making a call to an ASPX URL as the return keeps coming back as a failure.
I have successfully used this URL in previous programming projects, but this is my first time utilizing it with Ext JS. Despite researching different examples online, none have resolved my problem. Below is my JavaScript file, and any assistance in achieving a successful return on my button click would be greatly appreciated.
Although Fiddler confirms that the URL is being called and the returned JSON is {success: true}, my `Debugger.Launch()` statement is not triggered, and the "Success" alert is not displayed.
Therefore, my C# code is not being accessed from the JavaScript call, even though Fiddler indicates that the call is made to http://localhost/login/login.aspx.
Ext.require([
'Ext.form.*',
'Ext.window.Window'
]);
// More JavaScript code here...
ASPX File:
// C# code for login.aspx file...