ASP.NET Core Vietnam (edit)
Implementing ASP.NET Core CRUD Operation with CQRS and MediatR Patterns (hosting.work)
ASP.NET Core Microservices Code Refactoring into Reusable NuGet Package (hosting.work)
Get Client IP Address in ASP.NET Core – Guidelines
Get Client IP Address in ASP.NET Core - Guidelines | TheCodeBuzz
How to pass multiple parameters to a get method in ASP.NET Core MVC
How to Pass Multiple Parameters GET Method ASP.NET Core MVC (telerik.com)
1) Amazon S3: harshavardhan.ghorpade@gmail.com
- Uploading objects using presigned URLs - Amazon Simple Storage Service
- Cloud Agnostic Upload/Download APIs using Pre-signed URLs (AWS, Azure, Google Cloud) (linkedin.com)
- How to use pre-signed URLs to upload/download files to Sirv
- Generate AWS S3 Presigned Keys in C# For jQuery Frontend | Andyp.dev (HAY HAY HAY)
- php - Amazon S3 - How to Check if Presigned URL is Expired? - Stack Overflow
- amazon web services - Is there a way to set time-limit for pre-signed url in s3? - Stack Overflow
- Authenticating Requests in Browser-Based Uploads Using POST (AWS Signature Version 4) - Amazon Simple Storage Service
- Authenticating Requests: Using Query Parameters (AWS Signature Version 4) - Amazon Simple Storage Service
- Authenticating Requests: Using the Authorization Header (AWS Signature Version 4) - Amazon Simple Storage Service
Refer to the official AWS SDKs for additional parameters to your URLs:
- AWS SDK for JavaScript: pre-signed URLs
- AWS SDK for PHP: pre-signed URLs
- AWS SDK for Java: pre-signed URLs
- AWS SDK for .NET: pre-signed URLs
- AWS SDK for Ruby: pre-signed URLs
- AWS SDK for mobile: pre-signed URLs
- AWS SDK for Go: pre-signed URLs
(HAY HAY HAY) Generate AWS S3 Presigned keys, pass them to a jQuery frontend before uploading files to S3
gtechsltn/S3-Presigned-Keys-jQuery (github.com)
Upload files Securely to AWS S3 Directly from Browser | by Ashan Fernando | Enlear Academy
Multipart Upload for Large Files using Pre-Signed URLs - AWS - DEV Community
Pre-Signed URLs Archives - Jayendra's Cloud Certification Blog (jayendrapatil.com) (HAY HAY HAY)
(HAY HAY HAY) Cloud Agnostic Upload/Download APIs using Pre-signed URLs (AWS, Azure, Google Cloud):
- harshghorpade/CloudAgnosticStorageApiService: Cloud Agnostic Upload/Download APIs using Pre-signed URLs (AWS, Azure, Google Cloud) (github.com)
- gtechsltn/CloudAgnosticStorageApiService: Cloud Agnostic Upload/Download APIs using Pre-signed URLs (AWS, Azure, Google Cloud) (github.com)
(HAY HAY HAY) AWS Lambda file uploader demonstrates how to use server-less framework to upload small size files (up to 5mb) to cloud:
- harshghorpade/AwsLambdaFileuploader: AWS Lambda file uploader demonstrates how to use server-less framework to upload small size files (up to 5mb) to cloud (github.com)
- gtechsltn/AwsLambdaFileuploader: AWS Lambda file uploader demonstrates how to use server-less framework to upload small size files (up to 5mb) to cloud (github.com)
2) ASP.NET Core 5.0
EF Core in Console App: gtechsltn/efcore-console (github.com)
ASP.NET Core + Serilog + Logging to MongoDB: gtechsltn/netcore-serilog-to-mongodb (github.com)
- .Net Core Logging with MongoDB and Serilog – Sam Abraham, PMP, CSM
- Creating Windows Services In .NET Core – Part 3 – The “.NET Core Worker” Way - .NET Core Tutorials (dotnetcoretutorials.com)
ASP.NET Core & MongoDB: gtechsltn/AspNetCoreMongoDb (github.com)
- corespider/aspnetcore-mongodb-crud: ASP.NET Core Web API with MongoDB CRUD (github.com)
- gtechsltn/aspnetcore-mongodb-crud: ASP.NET Core Web API with MongoDB CRUD (github.com)
- ASP.NET Core Web API with MongoDB CRUD- Beginner's Guide » CoreSpider
ASP.NET Core & SignalR: gtechsltn/signalrdemo (github.com)
QR Code:
- CoreProgramm/QR-Code-in-.NET-Core-using-Bitmap: In this CoreProgramm you can find the source code of QR Code in .NET Core using Bitmap (github.com)
- gtechsltn/QR-Code-in-.NET-Core-using-Bitmap: In this CoreProgramm you can find the source code of QR Code in .NET Core using Bitmap (github.com)
Import/Export:
- Import and Export Excel file in ASP .NET Core 3.1 Razor age - DZone Web Dev
- ASP.NET Core Razor Pages: Export to Excel (aspsnippets.com)
- ClosedXML: ClosedXML/ClosedXML: ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API. (github.com)
- Export And Import Excel File Using ClosedXML In ASP.NET MVC (c-sharpcorner.com)
- Import And Export Data Using Excel File In ASP.NET MVC (c-sharpcorner.com)
- NPOI: gtechsltn/import-export-excel-in-.NET-Core-3.1-razor-using-NPOI: import export excel in .NET Core 3.1 razor using NPOI (github.com)
- CoreProgramm/import-export-excel-in-.NET-Core-3.1-razor-using-NPOI: import export excel in .NET Core 3.1 razor using NPOI (github.com)
Import Excel in ASP.NET Core
Export HTML to PDF:
Export to PDF:
- How to Securely Open PDF in Browser using .NET Core - CoreProgram (coreprogramm.com)
- How to hide PDF extension in browser using ASP.NET Core - CoreProgram (coreprogramm.com)
- CoreProgramm/Securely-Open-PDF-in-Browser-using-.NET-Core: In this CoreProgramm you can find source code of how Securely Open PDF in Browser using .NET Core. (github.com)
public FileResult OpenPDF()
{
string PDFpath = "wwwroot/PDFs/Samplefile.PDF";
byte[] abc = System.IO.File.ReadAllBytes(PDFpath);
System.IO.File.WriteAllBytes(PDFpath, abc);
MemoryStream ms = new MemoryStream(abc);
return new FileStreamResult(ms, "application/pdf");
}
ASP.NET MVC 5 with TypeScript
- mithunvp/LearnTS: Building ASP.NET MVC 5 with TypeScript in Visual Studio IDE (github.com)
- gtechsltn/LearnTS: Building ASP.NET MVC 5 with TypeScript in Visual Studio IDE (github.com)
Unit Testing: gtechsltn/httpcontextmoq: HttpContext Mock (github.com)
PrimeHotel: gtechsltn/PrimeHotel: A .NET 5 implementation of a hotel management system (github.com)
Serilog: gtechsltn/Sample.Serilog: Some sample projects showing how to use Serilog (github.com)
Exception Handling: gtechsltn/Net-Core-API-Exception-Handling: Ibrajber99 (github.com)
Generic REST Client: gtechsltn/.NET-Core-Generic-REST-client: .NET core generic REST client implementation. (github.com)
Obfuscation .NET assembly file: JieJie.NET - CodeProject
Dynamic Generate Image: c# - ASP.NET Core Generate Image file dynamically - Stack Overflow
ASP.NET Core: Dynamically generate and display QR Code Image in ASP.NET MVC Core (aspsnippets.com)
ASP.NET Core: Dynamically generate and display Barcode Image in ASP.NET MVC Core (aspsnippets.com)
Gzip and Brotli: ASP.NET Core Response Compression - DZone Web Dev
ASP.NET Core Response Compression: Response compression in ASP.NET Core | Microsoft Docs
Concurrency: Handling concurrency in an ASP.NET Core Web API with Dapper | Building SPAs (carlrippon.com)
AJAX Using XMLHttpRequest Call Web API from JavaScript with XMLHttpRequest (XHR) (yogihosting.com)
Upload File + JSON: NuGet Gallery | JsonModelBinder 2.1.1
Upload File + Progress: File Uploading with a Progress Bar in ASP.NET Core | by Dmitry Sikorsky | Medium
PDF: Generating PDF: .Net Core and Azure Web Application | Rahul Nath (rahulpnath.com)
CKEditor: Quick start - CKEditor 5 Documentation
URL Rewrite + QRCode: Tạo mã QRCode trong ASP.NET Core
URL Rewriting Middleware in ASP.NET Core | Microsoft Docs
Email confirm + Reset password:
Email Confirmation with ASP.NET Core Identity - Code Maze (code-maze.com)
Password Reset with ASP.NET Core Identity - Code Maze (code-maze.com)
3) Yogi
gtechsltn/ASP.NET-Core-CMS: The world’s first ASP.NET Core CMS (github.com)
gtechsltn/ASP.NET-Core-Identity-with-MongoDB-as-Database (github.com)
gtechsltn/Xaero: Xaero – Entity Framework Core Advanced Project (github.com) (EF Core 5.0: 1-1 + 1-n + n-n )
gtechsltn/QRCoder-implemented-in-ASP.NET-Core (github.com)
gtechsltn/Microservices-Code-Refactoring (github.com)
gtechsltn/Microservices-Code-Refactoring: ASP.NET Core Microservices Code Refactoring into Reusable NuGet Package (github.com) (Create NuGet Package)
4) Others
WCF in .NET Core: Consuming WCF Web Services in .NET Core - Best Practices | TheCodeBuzz
WCF: Service Versioning using WCF Routing - Sul Aga (sulhome.com)
WCF Backwards Compatibility and Versioning Strategies – Part 1 - CodeProject
WCF Backward Compatibility and Versioning Strategies – Part 2 - CodeProject
WCF Backward Compatibility and Versioning Strategies – Part 3 - CodeProject