How to Rename a Solution and Projects in Visual Studio 2022 Without Affecting Functionality?
I have a working application that includes Blazor Server, Blazor WASM, and an API. I want to change the names of the solution and the projects while ensuring that the current application remains unaffected. What is the easiest and problem-free way to…
ASP.NET Core
Blazor
C#

persistent file upload across pages in .net mvc application
We are developing a .NET Core 9 MVC application that includes file upload functionality. The system is expected to support: Uploading 15 to 20 large files simultaneously, with each file ranging from 1 GB to 5 GB. Uninterrupted background uploads, even…
ASP.NET Core Training
How to add configuration to auto save access token and refresh token in AspnetUserToken table
Hi, I am using Microsoft.EntityFrameworkCore (Version 8.0.6) + Microsoft.AspNetCore.Identity.EntityFrameworkCore(Version 8.0.6) + Npgsql.EntityFrameworkCore.PostgreSQL (Version 8). I want to save the auto generated token from Identity Authentication into…
ASP.NET Core Training
Content from website doesn't display
I've published and deployed a web site, but IIS doesn't display it correctly. None of the mark up is displayed in the browser, only comments and page title from my asp.net page. So, it resolves, but doesn't render everything. This is what it looks…
ASP.NET API
Opening a port on my router, is it safe?
I have a database which will be receiving info from external APIs. I made an API (in asp.net core web api) for the database to receive requests from those external APIs. The API will be running on my computer on an IIS server. Completely new to all…
ASP.NET API
How to connect to Snowflake using .NET
Hi there, https://community.snowflake.com/s/article/Connect-to-Snowflake-from-Visual-Studio-using-the-NET-Connector Currently, a set of data apis is being developed. The data is sourced from Snowflake and is currently connected through username and…
ASP.NET API
Understanding questions of Minimal API by Blazor Web (server)?
As a general practice, you will use Minimal API with a MAUI Blazor or Blazor WebAssembly. With Blazor Web, I only used Minimal API (in relation tu Blazor Server) for cookie setting on the client (to avoid controllers, as minimal API is easier for…
ASP.NET API
HTTP 404 issue
Hi, Due to the issue Server Error in '/' Application. The resource cannot be found. __Description:__HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. …
ASP.NET API
how to consume complex data from different pages
how to consume complex data from different pages please note that , the data is complex , session , sql , xml ...+ full text catalog.. etc not from one soure , i need easy and fast way to consume data from page1 to page2 using ajax
ASP.NET Core Training
Severity Code Description Project File Line Suppression State Error MSB4100 Expected "$([System.String]::Copy('%(Identity)').EndsWith('.resources.dll'))" to evaluate to a boolean instead of "$([System.String]::Copy('C:\Users\tarek\OneDrive\Desktop\StoreAp
Severity Code Description Project File Line Suppression State Error MSB4100 Expected "$([System.String]::Copy('%(Identity)').EndsWith('.resources.dll'))" to evaluate to a boolean instead of…
ASP.NET Core
Blazor
.NET MAUI
How to Insert Array Data
I want to create a DotNet Core API application. Where the data has to be added in the form of an array. That is, I want to insert a lot of data at once with one click. But I am not able to get any idea about this. So I am seeking the help of experienced…
ASP.NET API
Load Session Variables only Once
Hello everyone and thanks for the help in advance. This is a continuation of a previous question I asked regarding loading session data. I neglected to fully understand what I needed to accomplish. The data needing to be loaded is used by one user…
ASP.NET Core Training
How to solve error "A potentially dangerous Request.Path value was detected from the client (:)."
I am trying to fetch binaries/files from Artifacts --> Package using API call. URL: GET…
ASP.NET API
Old .NET versions automatic uninstallation/removal
Hello, How are you removing old versions of .NET from your devices? Is there a way to automate this? To better clarify our issue, please see the screenshot below. We just installed the latest version (6.0.35) for both: .NET Runtime and Desktop Runtime…
.NET
ASP.NET Core
ASP.NET
.NET Runtime
.NET
ASP.NET Core
ASP.NET
.NET Runtime
Old .NET versions automatic uninstallation/removal
Hello, How are you removing old versions of .NET from your devices? Is there a way to automate this? To better clarify our issue, please see the screenshot below. We just installed the latest version (6.0.35) for both: .NET Runtime and Desktop Runtime…
.NET
ASP.NET Core
ASP.NET
.NET Runtime
.NET
ASP.NET Core
ASP.NET
.NET Runtime
Nuget packages showing two different version in packages.config file
Not sure if this was the correct tags to add, if not please move or redirect We have several asp.net 4.8.1 web apps built in VB. We upgraded several NuGet packages and we can see the correct version in the packages.config file, however, when we go to the…
ASP.NET API
Migration from .Net Web Application (Framework 4.7) into .Net Core Web 8.0
Hi, I would like to migrate my application from .Net Framework 4.7 to .Net Core 8.0 as I would like to have my application in the latest version. My application is in MVP architecture and web pages are aspx (UI part). Is there any easy way to migrate it…
.NET
ASP.NET Core
ASP.NET
C#
ASP.NET API
.NET
ASP.NET Core
ASP.NET
C#
ASP.NET API
Migration from .Net Web Application (Framework 4.7) into .Net Core Web 8.0
Hi, I would like to migrate my application from .Net Framework 4.7 to .Net Core 8.0 as I would like to have my application in the latest version. My application is in MVP architecture and web pages are aspx (UI part). Is there any easy way to migrate it…
.NET
ASP.NET Core
ASP.NET
C#
ASP.NET API
.NET
ASP.NET Core
ASP.NET
C#
ASP.NET API
Can't find ado.net entity data model missing visual studio 2019.
i have installed Entityframework 6 also but ado.net entity data model not visible
.NET
ASP.NET API
Password hashing in register with Dapper
Hi, I switched from EF to Dapper in a days and this is first time I'm writing register and login. The thing is that, in Dapper we have to hash Password manually and GPT recommended to use BCrypt. That is okay, but I'm suspicious of is that a best case.…