ASP.NET Category

https://blogs.technet.microsoft.com/wikininjas/2017/10/04/wiki-life-the-wait-is-over/

Points:

  • ASP.NET WebForm applications.
  • ASP.NET MVC applications.
  • ASP.NET Core
  • ASP.NET WEB API related topics
  • ASP.NET with combinations of JQuery, AJAX, JavaScript, AngularJs, Angular2, Angular4, Angular5 or any other scripting language
  • Languages can be VB.NET or C#.NET
  • Explain with images and source code, download links are a must for any application.

Syed Shanu

Email: syedshanumcain@gmail.com

http://shanucsharp.blogspot.kr

https://www.facebook.com/syed.shanu.9

https://www.facebook.com/ShanuCSharpDotNet/

https://www.codeproject.com/Articles/syed-shanu

http://www.c-sharpcorner.com/members/syed-shanu

https://mvp.microsoft.com/en-us/PublicProfile/5001980

ASP.NET Core 2 + Angular 5

https://github.com/MarkPieszak/aspnetcore-angular2-universal

*NEW* Angular 5.x Universal & ASP.NET Core 2.0 Advanced Starter - w/ server-side rendering for SEO, Bootstrap, i18n internationalization, TypeScript, unit testing, WebAPI REST setup, SignalR, Swagger docs, and more!

https://github.com/emonney/QuickApp

ASP.NET Core 2.0 / Angular 5 startup project template with complete login, user and role management. Plus other useful services for Quick Application Development

https://github.com/PacktPublishing/ASP.NET-Core-2-and-Angular-5

ASP.NET Core 2 and Angular 5, published by Packt

https://github.com/RobertDyball/A2SPA

SPA with ASP.NetCore 2 + Angular 4 + Bootstrap 4+ OpenIdDict

ASP.NET Core: Web API + Angular 4

http://www.c-sharpcorner.com/article/getting-started-with-asp-net-core-and-angular-4-using-web-api/

ASP.NET MVC: jQuery DataTables

http://www.c-sharpcorner.com/article/grid-view-with-server-side-advanced-search-using-jquery-datatables-in-asp-net-mv/

ASP.NET MVC: ASP.NET Identity + OWIN

http://bitoftech.net/2015/01/21/asp-net-identity-2-with-asp-net-web-api-2-accounts-management/

ASP.NET MVC: WEB API + Cookies

http://www.devcurry.com/2013/04/http-cookies-and-aspnet-web-api.html

http://www.binaryintellect.net/articles/0f52c5bf-b7a4-4720-9572-6159b1804d1d.aspx

ASP.NET MVC: ASP.NET Identity + OWIN + Cookies

http://benfoster.io/blog/aspnet-identity-stripped-bare-mvc-part-1

http://benfoster.io/blog/aspnet-identity-stripped-bare-mvc-part-2

Sourcehttps://github.com/benfoster/NakedIdentity

ASP.NET Core: ASP.NET Identity + Claims Based Identity + EF + Code First

http://sikorsky.pro/en/blog/aspnet-core-custom-user-manager

Sourcehttps://github.com/DmitrySikorsky/AspNetCoreCustomUserManager

ASP.NET MVC: Cookies + Web API

http://tostring.it/2012/12/03/manage-cookies-using-web-api/

ASP.NET MVC: Unit Testing with xUnit + Web API

http://tostring.it/2012/07/23/an-easy-way-to-write-an-integration-test-with-web-api/

ASP.NET Core: Unit Testing with xUnit

http://anthonygiretti.com/2018/01/19/code-reliability-unit-testing-with-xunit-and-fluentassertions-in-net-core-2-apps/

Dynamic Linq Queries

http://tomasp.net/blog/dynamic-linq-queries.aspx/

Database Samples

http://chinookdatabase.codeplex.com/

Chinook is a sample database available for SQL Server, Oracle, MySQL, etc. It can be created by running a single SQL script.

Chinook is a good name choice for a database that intents to be an alternative to Northwind.

ASP.NET CORE MIDDLEWARE

https://radu-matei.com/blog/aspnet-core-websockets-middleware/

First of all, it is important to understand what middleware is and how the new request pipeline works in ASP .NET Core, and there is a great article on that from the Official ASP .NET Core Documentation.

Middleware are software components that are assembled into an application pipeline to handle requests and responses. Each component chooses whether to pass the request on to the next component in the pipeline, and can perform certain actions before and after the next component is invoked in the pipeline. Request delegates are used to build the request pipeline. The request delegates handle each HTTP request.