skip to Main Content

how to call aspx.vb method using ajax – Jquery ajax

how to call vb.net method from ajax I send array as parameter in the ajax and it's not working this is the ajax and javascript code <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript"> $("#Button1").click(function () { var Years = document.getElementById("Options").querySelectorAll(".selected"); $.ajax({ type: "POST",…

VIEW QUESTION

There is an error in app.UseMigrationsEndPoint(), if this cant be solved can guide me to remove asp.net identity files (which is used to create login)

using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.ResponseCompression; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using OfflineEventManagment.Data; using OfflineEventManagment.Areas; using System; using System.Collections.Generic; using System.IO.Compression; using System.Linq; using System.Threading.Tasks; namespace OfflineEventManagment { public class Startup { public…

VIEW QUESTION
Back To Top
Search