How to get an accesstoken from facebook to create a photo album ?
In a Asp.net Core application I want to create a photo album on a page I manage. In a console application I have been able to create a photo album and upload a photo to that album. The access token I...
View ArticleFineUploader data
Hi Community. I apologize in advance if this is a repeat question, but I've been searching around and haven't been able to find any answers.I'm trying to get write Controller (in asp.net core) code to...
View ArticleHow to save image path in database and save image in specific folder of...
[HttpPost][ValidateAntiForgeryToken]publicasyncTask<IActionResult>Create(Employee emp){if(ModelState.IsValid){var files =HttpContext.Request.Form.Files;foreach(varImagein...
View ArticleWhat does AsNoTracking
please see this code await students.AsNoTracking().ToListAsync() tell me what is AsNoTracking() and what ToListAsync() ?https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/sort-filter-pagepublic...
View ArticleHow to store things like ethnicity, religion etc. and make it multilingual...
I'm creating application with Entity Framework Core and ASP.NET Core. I need to store things like ethnicity, religion and have pre-defined set of values for it. I'm not sure what would be the best way...
View ArticleHow to sent mail using smtp config in asp net core 2.0
Hello everyone!I'm getting trouble trying to set an account confirmation using smtp can anyone suggest a tutorial that I can set it properly with gmail.Thank you
View ArticleHow to identity which dotnet core exe is running for which application pool...
hi All,I want to do silent deployment for dotnet core 2.0 application under IIS, currently while deploying it doesn't replace dll stating dll is under use. so how to identify which dotnet core exe is...
View ArticleUploading files in .net core
I'm trying to follow the dotnet core example here:https://docs.microsoft.com/en-us/aspnet/core/mvc/models/file-uploadswith a few minor adjustments on the controller side. The following is what my form...
View Articlewhat cms systems are available for .net core
What cms systems are available to use on a pure asp.net core(mvc 6) web site. Right now i am learning umbraco and know my choices are limited. I also seen orchard2. Are there others and what is the...
View ArticleAdvantages of Razor Pages?
Hi, i'm reading and trying out the new razor pages, but I see no particular advantages in using this feature. What are your thoughts and am I wrong on this:1) Razor pages are not easier to make or...
View Article.Net Core on Linux for developing Asp.Net Mvc apps
Hi.I have installed Visual Studio Code on an Ubuntu 14.0.4 PC.How to develop Mvc apps on Ubuntu 14.0.4?I tried running the following command in Linux Ubuntu Terminal:$dotnet new console$dotnet...
View ArticleHow to change Maximum JsonResult length
In asp.net there was a option to change the MaxJsonLength in Json result. I couldn't find any way to increase this data length in ASP.Net Core. Any suggestions?
View Articlewhat is the best image optimizer,cacher and... for dot net core?
Hello.I am developing a new website and I want to cache, showing some size of image in site, show thumbnails and in fact my website is based on images and I need to optimise images.Can you give me name...
View ArticleTesting database logic
Hi,I want to test some database logic. I've written a test which calls a class which simply logs the current date:[Fact] public async Task LogCurrentDate_DbIsEmptyTest() { var emptyData = new...
View ArticleApparently Random Error: "Antiforgery token validation failed. The...
Background I have a relatively new ASP.NET Core 2 site. It's running on just one server, and I only restart the site once every few days when I upload an update. About once a day, a user's request...
View Articlesample project in mvc core
HiPlease can you help me with a professional project in mvc core to learn how to redesign the c# project in mvc core. We have a payroll system developed in C# and SQL Server and I want to redesign...
View ArticleMJPEG Stream w/ .NET Core 2.0
I'm using .NNET Core 2.0 to develop my Web API in C# and I want to forward an MJEPG stream of images with HTTP GET request. I have created the multipart content but when I check the response I can only...
View ArticleHow to design enums for extensibility
Let's assume I have enumenum Gender { Male, Female, Shemale, Other }Now assume I already have database using this enum and I want to add more fields. In C languages it is common to design enums like...
View ArticleHow to pass an object to a service?
I have a object, Person person = _sessionService.GetPersonFromSession(HttpContext); it has lots of data about that person. I have a service that is used to log information about that service. Person...
View Article