My HTML and CSS gets ignored in my .NET code
I am trying to create an invoice look-alike PDF document with pure HTML and CSS code in my ASP.NET MVC web app, but whenever I try to create the PDF file, it gets created but it's just a blank page,…
I am trying to create an invoice look-alike PDF document with pure HTML and CSS code in my ASP.NET MVC web app, but whenever I try to create the PDF file, it gets created but it's just a blank page,…
I have an app for a personal project set up as an app service on Azure. It used a WebHook to get the code, connecting it from the deployment center, but suddenly it started failing. The last commit, when it…
I was requested to create a page in asp.net which gets the windows login info from the user, connects to the active directory and them gets the employee info. After this, I have to register the Internal ID, Name and…
I'm trying to make and ajax call using jQuery.ajax and contentType: 'application/json; charset=utf-8'. I created a new project for ASP.NET Core MVC with .NET 8. This is the Javascript code: $('#addPerson').click(function () { var person = { Name: 'Test1', Email:…
One of my tasks is containerizing an ASP.NET Core 8 application and configuring it to work with a single command "docker-compose up". I developed the application in ASP.NET Core 8 using C#. This is my first experience with Docker. I…
i have a Question application...each Questions have 4 options... i need to Uncheck other options when select a option in each question... please help me i have no time... this script change all question options UnCheck... <!DOCTYPE html> <html data-bs-theme="light"…
To obtain an ASP.NET Core MVC web site, after a crash, I follow the indications of this thread again. I installed the Visual Studio extension, I inserted the four Entity Framework Core references, I typed dotnet ef database update and…
I wanted to upgrade an Azure Function app from .NET 6 to .NET 8 and the FunctionApp version is 4. The steps I followed was to upgrade Visual Studio to 17.9 and then changed target framework to net8.0. After cleaning…
I have been struggling to implement dropzone.js on my razor page. I'm currently trying to create a help desk where dropzone allows the user to drag a file to upload along with their ticket. I haven't had much luck in…
I'm trying to create an app where the frontend on the client side is made with react.js and the backend uses ASP.Net Core MVC. I'm trying to fetch the data from the api for rendering all the data for that…