Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
201 views

I'm working on migrating a project from ASP.NET Core 5.0 to .NET Core 8.0. In my project, using Test_Site_1.Application.Interfaces.Contexts; using Test_Site_1.Common.Dto; using Test_Site_1.Domain....
Jack Rabbit's user avatar
-1 votes
1 answer
1k views

options.AddPolicy("AllowAll", builder => builder.WithOrigins("*") .AllowAnyHeader() ....
user avatar
0 votes
1 answer
196 views

I have an Asp.Net Core 2.2 MVC application. I am trying to migrate to 3.0, using this documentation: https://learn.microsoft.com/en-us/aspnet/core/migration/22-to-30?view=aspnetcore-6.0&tabs=...
David Shochet's user avatar
-1 votes
1 answer
94 views

I have an ASP.NET Core MVC solution. I tried to get dynamic object and uncertainly column numbers and types from a stored procedure. I prepared the stored procedure, but I couldn't find a solution ...
hkyaaa's user avatar
  • 100
4 votes
3 answers
7k views

I have an ASP.NET Core 3.0 MVC application with images in it. E.g., http://foo.bar/images/image.jpg Now, the folder images is a virtual directory which is mapped to a network drive, such as \\192.168....
Impostor's user avatar
  • 2,068
0 votes
1 answer
741 views

I am migrating my .NET standard 2.0 class library application to .NET core 3.0 where I want to start web API server from class library, Where class library application is getting launched with ...
PDTech's user avatar
  • 147
0 votes
0 answers
295 views

I am publishing an ASP.Net Core 3.0 application in IIS. My publish profile looks like This is how my web.config file is in publish folder <?xml version="1.0" encoding="utf-8"?&...
Dot Net developer's user avatar
2 votes
1 answer
589 views

I have the following classes: public class Invoice { [key] public Guid InvoiceID { get; set; } public string Name { get; set; } public List<Invoice_item> Invoice_items { ...
Rafael Mark's user avatar
1 vote
1 answer
821 views

I have run into a problem where my websocket connection is functioning as expected locally, but not when deployed to azure app service. (.NET Core 3.0) I am able to receive messages of any size ...
eirikjor's user avatar
0 votes
1 answer
646 views

I am hosting two windows containers from a Windows 2019 servers and both are running in https. When my Web URL container tried to make a call to the API container. It didn't work and when I got ...
AJD's user avatar
  • 1
2 votes
0 answers
229 views

I am consuming a SOAP service in .NET Core 3.0 API. This service uses WS-Security standard for authentication. Will the below code work with just the username and password provided to the client ...
Anjali VC's user avatar
0 votes
1 answer
303 views

I did some research but I couldn't find exactly what I wanted. I have an endless menu. I have a MenuDTO and a MenuViewModel that I use for this menu. I had no problem matching between model and DTO, ...
hlmbsbyk's user avatar
4 votes
1 answer
690 views

I am working on generating HTML to send to a PDF generator and discovered this this question on Stackoverflow. It points to Paris Polyzos and his article. Upon implementing the code in .Net Core 3.0,...
Sam Carleton's user avatar
  • 1,420
0 votes
1 answer
214 views

I have a project in .NET Core 3.1 and the frontend with React. It was generated using the scaffold instructions from this link. When I try to trigger forgot password action, it shows a success page ...
Felipe Peña's user avatar
  • 2,848
0 votes
2 answers
701 views

I am trying to upload files to Google Drive using ASP.NET Core 3.0, here is my code to upload the file. GData.File fileMetadata = new GData.File() { Id = null, Name = Path.GetFileName(path), ...
Muhammad Jazab's user avatar
0 votes
0 answers
391 views

I have an Azure IoT hub containing a bunch of devices and I have linked the IoT Hub to an Azure Event Hub to subscribe for device twin changes. I then am developing a web application with a Microsoft....
Jon Th's user avatar
  • 377
0 votes
0 answers
224 views

Is this correct way when I don't want to log the file data using the given condition, that the contentType is application/json or any other way is there to skip writing the file contents? if (context....
11738472's user avatar
  • 242
0 votes
1 answer
444 views

Created a ASP.Net Core 3 web app with React using Visual Studio 2019. When I try to run the application in visual studio, I am seeing the following error. I tried running Visual Studio as ...
user2347528's user avatar
1 vote
1 answer
906 views

I'm trying to get windows user name in ASP.NET Core 3.0 I have found here many questions on this topic, but I cannot find any answer I could use. My app uses login-password authentication, but lot of ...
Lukas's user avatar
  • 113
0 votes
1 answer
909 views

I'm developing a web application using NET Core 3 razor pages, my Login.cshtml page looks as follows: <div class="columns is-centered"> <div class="column is-6"> ...
Tofetopo's user avatar
  • 496
1 vote
1 answer
2k views

Currently I am using ABP version 2.9 (DonetCore, Angular, Mongo) project template. I need to have a logic to redirect user to different path based on user ROLE. What I see from the source [here], ...
Harry Sarshogh's user avatar
4 votes
1 answer
3k views

My understanding is that, starting with ASP.NET Core 3.0, .NET Framework is an unsupported target framework, and thus you can only run on the .NET Core runtime. If this is the case, what NuGet ...
kimsagro's user avatar
  • 17.7k
0 votes
1 answer
2k views

I am running multiple projects in my system, as shown below: Startup project is Project 1 BLL Project (in this project I am setting the session) Common Project (in this project only I want to call the ...
Asif Ahmed's user avatar
0 votes
1 answer
4k views

I am trying to implement a segment in my .net core 3 web application that shows the number of online users in real-time. So the counter gets updated automatically without page refresh anytime a user ...
JK1990's user avatar
  • 63
1 vote
2 answers
453 views

I have a .NetCore 3 API controller that can take a POST request. However, I want it to save the file on a different drive. F:\GameFiles\Media\UserScreens\Uploads I am setting the path in my method ...
SkyeBoniwell's user avatar
  • 7,206

1
2 3 4 5
17