Uploading files in ASPNET Core
Uploading files in ASP.NET Core is largely the same as standard full framework MVC but now we can stream large files. Here I explain how
All technologies, only pure source code
Uploading files in ASP.NET Core is largely the same as standard full framework MVC but now we can stream large files. Here I explain how
In this post, I want to show how creating View Components in ASP.NET Core is simple and powerful and allows us to have reusable components.
I want to add new cool features for AdminLTE with ASP.NET Core. The source code of this template is on GitHub #aspnetcore #adminlte #mvc #gravatar #breadcrumbs #navigation
This article shows how to implement a Microsoft Account as an external provider in an IdentityServer4 project using ASP.NET Core…
I have a website running on ASP.NET MVC 4.5.2. I have an IdentityServer4 server running but when I try and…
Hi guys, I want in MVC to render a text with an image as an ActionLink. For creating a simple…
HTML5 API includes Drag and Drop (DnD) native functionality. The event listener methods for all the drag and drop events…
It’s easy by using the HttpContextWrapper HttpContextBase basecontext = (new HttpContextWrapper(HttpContext.Current)); Happy coding!
In the two previous post I discussed about the first step to creare this application and the implementation of the…
In my previsious post I discussed the first implementation of this application. In this post I’m explained how to implement…
In this tutorial, I use several techniques and tools. I use Microsoft Visual Studio 2015 and the latest version of…
Did you received this error when you try to login in your Owin app with Facebook? App Not Set Up:…
We have an MVC project using OWIN Framework to allow our users to authenticate using Twitter. However starting today, we…
If you have problem returning dynamically drawn image from controller below informations may help. The task looks easy and should…
Register an app in the Microsot Account Developer Center Go to the Microsoft Account Developer Center and create a new…
You might have missed to register your Interface and class (which implements that inteface) registration in your code. e.g if…
What’s that? I’ll let the code do the speaking. @{ Func<dynamic, object> b = @<strong>@item</strong>; } <span>This sentence is @b(“In…
Razor minimizes the number of characters and keystrokes required when writing a view template, and enables a fast, fluid coding…
I have written the following DateDiff() function in C#. VB.NET users already had it using the Micrsoft.VisualBasic.dll assembly. Now you…