ASP.NET Web Forms [WebMethod] not being called by AJAX Post

I’m working on a ASP.NET Web Forms project using bootstrap/jquery 3.4.1 js. I’m having an issue of getting my AJAX Post working. It’s supposed to hit my [WebMethod] within Schedule.aspx, but it’s not. I’ve put down a breakpoint on it and it’s never activated when clicking the save button. The AJAX succeeds and the alert pops up, and I’ve already verified that the stringify data is outputting as expected, but why is it not hitting the [WebMethod]?

How to send two arrays simultaneously to view using JSON asp.net MVC

I have to create a dynamic chart in my view based off a value a user would enter into an input contained in a beginform in my view, however it has to be done asynchronously thus why I am using Ajax and Json, I send the user input to the controller fine and then using that input my code creates two Arrays one string array that would be used as my labels for my chart and the other an int array that is used as the data values for the chart.

Multiline textbox value split using javascript in Asp.Net C#

Asp.Net C# Multiline textbox(textbox1) value split after 35 charaters of address & add to textbox(textbox2 – Singleline) again split next 35 charaters & add to textbox(textbox3 – Singleline) again split next 35 charaters & add to textbox(textbox4 – Singleline) again split next 35 charaters & add to textbox(textbox5 – Singleline).
Note: While Splitting value after 35 characters make sure if a word is incomplete then add that word in next line like(…31 address – here at add position of address is 35 characters so it’ll get slipt & gets add to new textbox, but I want that word address in new textbox & from their it should count to 35 charaters like so on.)