Posts by Gustavo Rossi Muller • 133 points
4 posts
-
0
votes2
answers897
viewsA: Webservice in C# with 404 error
If you use MVC in the app_start folder in the route logger you can skip the route to your web service, it worked for me. routes.IgnoreRoute("{resource}.asmx/{*pathInfo}");…
-
1
votes1
answer1105
viewsQ: Find the app by searching the play store
I first published a Google Play Store app, more for testing anyway, the google that goes directly to the app page. The link works, but I wanted to find it by searching and I can’t. Can anyone tell…
-
1
votes2
answers743
viewsA: Disable paging and display all records when starting to search in datatable
You can try using the preXhr and event of the search either directly in the field of or in the api (_fnFilterCustom if I am not mistaken) Before starting the search, use the api to remove paging…
-
1
votes2
answers4167
viewsA: Upload files with AJAX
I had a similar problem with ASP.NET. This is the code I made to solve in my case. Note that I passed the form as parameter in the Formdata constructor. window.addEventListener("submit", function…