Calling Web API Using HttpClient

Call Web API using HTTPClient Request

In this tutorial, we are going to create a checklist for different ways in Calling Web API Using HttpClient. In software development, data were passed through a different medium or application, and one of the best ways to handle it is to use Web Services and Apis. This is where we can make use of … Read more

Categories C#

Building a Robust ASP.NET MVC Application with Database CRUD Functionality: A Step-by-Step Guide

Creating an ASP.NET MVC application with CRUD (Create, Read, Update, Delete) functionality allows you to build a dynamic web application that interacts with a database. ASP.NET MVC is a powerful framework that follows the Model-View-Controller pattern, providing a structured approach to developing web applications. In this tutorial, we will create a fully working ASP.NET MVC … Read more

How to Enable Line Numbers in SQL Server Management Studio

Display line numbers in SQL Server Management Studio

SQL Server Management Studio (SSMS) is a popular integrated environment for managing SQL infrastructure and writing SQL queries. For developers, enabling line numbers in SSMS can significantly enhance code readability and debugging efficiency. This article will guide you on how to enable line numbers in SQL Server Management Studio, along with some useful tips and … Read more

Categories SQL

PYROCMS – CheatSheet

I came across with PyroCMS project, and I find it really hard to search for basic composer commands. So I decided to compile the PyroCMS cheatsheet. This is not a complete guide, but hopefully, you can make it as your reference. PyroCMS CheatSheet – Laravel Development Platform As stated from the official website of PyroCMS … Read more

Install private package with composer

install private package with composer

Most of the PHP framework now a day uses private packages from repositories using a Composer. To install a private package with the composer, we need to set the additional configuration for our composer.json file. Then we need to generate an SSH key and register it to our existing Git Repository. Just follow the steps … Read more

How do I install Visual Studio offline?

The latest version of Visual Studio removed the availability to download an offline installer. Instead, they offer to download a layout of the installer if you have unreliable network environments or no internet at all. Basically, this method is to create a copy of the installer itself, selecting the specific tools you need. This article … Read more

Read text from PDF using iTextSharp

Read text from PDF using iTextSharp

Read text from PDF using iTextSharp – I started my day searching for a solution on how to read PDF files, and finally, I was able to search for a solution. Here is a solution from stack overflow.I am posting this to help readers from this blog who have also searched for this problem. Credit … Read more

Categories C#

ASP.Net SignalR Real-Time Chat Application

SignalR Chat App With ASP.NET

This article will show you an actual ASP.Net SignalR Real-Time Chat Application. This project’s main goal is to have an idea of how we can use SignalR in a real-time web application. As stated on this site https://www.asp.net/signalr: “ASP.NET SignalR is a library for ASP.NET developers that makes developing real-time web functionality easy. SignalR allows … Read more