skip to Main Content

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

Sending data to controller with ajax in ASP.NET Core – Jquery ajax

I can't send the data to the controller with ajax. goes "null". please help me. my html codes: <div class="modal fade" id="sagTikMenuKategoriGuncelleModal" data-bs-backdrop="static"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header" style="font-weight: 600; color: rgb(157, 163, 173); background-color: rgb(248, 248, 248);">…

VIEW QUESTION
Back To Top
Search