Often we forget that we stand on the shoulders of giants. Machine Learning, Deep Learning and AI have gained such traction, that there are many... Read More
C#
In this article, we will have an overview of Clean architecture and then we will try to implement this architecture with ASP.NET Core. Building scalable,... Read More
Caching provides a better customer experience and makes applications performant and scalable. If the result (query, page, etc.) is cached, the next time the same... Read More
ChatGPT, or Generative Pre-trained Transformer, is a powerful language model developed by OpenAI. It is capable of generating human-like text completions and can be used... Read More
I’ve half-jokingly said that there’s never a good reason to use a QR Code. However, I’m working on an MVP (minimally viable product) for a small... Read More
Crop Image in ASP.NET using JCrop, JQuery
1 min read
Crop Image in ASP.NET using JCrop, JQuery 1. First include the following file into your project jquery.Jcrop.js jquery.Jcrop.min.js jquery.min.js or you can directly drag and... Read More
Use for Groupping and sum with datatble Pass Datatable as dttemp var query = from r in dttemp.AsEnumerable() group r by new { StyleDetail_COLOR_NAME =... Read More
Format a String as Currency in C#
1 min read
When building a string for output to a web page, it’s useful to format any currency value in a human-friendly money format. This is extremely... Read More
Export Datatable To excel .cvs File with c#
1 min read
DataTable dtUsers = Session[“UsersForApproval”] as DataTable; DataTable dtexprot = new DataTable(); if (Session[“UsersForApproval”] == null) { dtexprot = UserDetails.GetUsersForApproval(); Session[“UsersForApproval”] = dtUsers; } else {... Read More
Redirect code by page request url
1 min read
This Code Redirect to page which have a user control for login button on login page. Code: Response.Redirect(Page.Request.Url.PathAndQuery);... Read More
