Microsoft ASP.Net
-
Two-factor authentication with SMS in ASP.NET Core
https://docs.microsoft.com/en-us/aspnet/core/security/authentication/2fa?view=aspnetcore-1.1&viewFallbackFrom=aspnetcore-5.0
-
Using @Html.DisplayNameFor() with PagedList
@Html.DisplayNameFor(model => model.FirstOrDefault().ItemName)
source: https://stackoverflow.com/questions/14929311/using-html-displaynamefor-with-pagedlist
-
JTable Datagrid for MVC
http://www.jtable.org/demo/PagingAndSorting more
-
Tutorial: Deploy an ASP.NET app to Azure with Azure SQL Database
https://docs.microsoft.com/en-us/azure/app-service/app-service-web-tutorial-dotnet-sqldatabase more
-
ASP.Net MVC Paging, Searching and Sorting
https://docs.microsoft.com/en-us/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application
https:// … more
-
Calling Stored Procedures in the Entity Framework MVC
https://www.entityframeworktutorial.net/efcore/working-with-stored-procedure-in-ef-core.aspx
-
SSL Certificate Generation and OpenSSL
https://www.sslchecker.com/csr/self_signed
https://github.com/openssl/openssl
https://www.openssl.org/source/
or via powershell:
https://support.jetglobal.com/hc/en-us/articles/235636308-How-To- … more
-
Sharepoint Secure Store
https://docs.microsoft.com/en-us/sharepoint/administration/configure-the-secure-store-service
https://www.codeproject.com/Articles/819546/Secure-Store-Service-in-SharePoint
https://www. … more
-
Rename a Sharepoint Web Application
Must be done in Sharepoint Management Shell (Powershell)
$WebApp = SPWebApplication | where {$_.Name -match "OldWebAppName"}$WebApp.Name ="NewWebAppName"$WebApp.Update()# This bit is just to … more
-
CKSDEV for Sharepoint 2013
https://marketplace.visualstudio.com/items?itemName=WesHackett.CKS-DevforVisualStudio2013