Stroring files in Temporary ASP.NET folder

I’m working on a legacy .NET project. As per the new requirement I’m trying to save the uploaded jpg files for some processing. So I’m getting the executing assembly and create a temporary folder to store images. My question is the ExecutingAssembly returns something like “C:WindowsMicrosoft.NETFrameworkv2.0.50727Temporary ASP.NET FilesApplicationName” but still I can store and and process jpg files in that folder. So is it ok to store files in “Temporary ASP.NET” folder. Will it cause any problem?

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]?