Category: Web Development
How to Apply custom pagination using devextreme
The devextreme already provides pagination features as we can see in the above image. If we want to go directly to page 155, we can go to that specific page by clicking on the page to page. This is a
How “this” is used in callback function in javascript
The “this” keyword of JavaScript causes confusion for people, who start to use Javascript language and mainly for those who start after using the other languages. Here the main question is how to use “this” in the right way in
Mvc c# : Exclude Enum values from DropDownListFor Html helper on .cshtml Page
Suppose we have some enum type in c# as follows : enum Performance { None=-1, Dissatisfied=0, Below Average=1, Average =2, Good = 3, Excellent=4, } Consider some employee model with a given enum type property. public class EmployeePerformance{ public int
Blazor in .NET
Blazor is a new DOT NET web framework for building client applications using C # / Razor and HTML-enabled browser with WebAssembly. It can simplify the process of building a single-page program (SPA) and at the same time enable full
HTMLCollection and NodeList
HTMLCollection: HtmlCollection is a collection of HTML elements from DOM. it is access by the name,id or index number. It use getElementByClassName, getElemenrtByTagName in NodeList. It uses three Methods: HTMLCollection Item() Method HTMLCollection length() Method HTMLCollection namedItem() Method Html Collection
Git-Hub Project Management
Step 1: First, create a. It’s a repository, not a project. You need to create a project using the project Menu. I will move on to the project later. First, I am discussing creating issues. Step 2: Go to the
Edit Office Documents online in web application using Office365 OneDrive APIs
This post is about editing office documents online in a web application interface for users. In this, you will require an office 365 license to use Microsoft graph APIs to edit documents through Onedrive. To edit MS Word documents online,
Diagnostics in the C# Programming
The System. Diagnostics namespace provides a process class which has some method to run external .exe or another application into a C#. This also enables you to debug and trace code; start, stop, and kill processes; monitor system performance; and
Exceptions in C#
An exception is an unexpected or unwanted event that occurs when a program is executed i.e at runtime, that disrupts the normal flow of the program’s instructions. Sometimes while executing the program, a user might face the possibility that the