Bind data to dynamically created HTML elements using Ajax jQuery.

Mohammed Imtiyaz Apr 17, 2020

Binding data to HTML elements is quite easy using Ajax jQuery. Let’s take an example of an online point of sale system where adding products to invoice varies from customer to customer.

Usually binding data to HTML select undergoes a process of sending the request to the server. It’s ok if you have a single HTML select but in our scenario we are creating multiple rows. Sending request to server whenever a new HTML select is created is not a good idea. To overcome this, we can take a different approach to improve the performance...

JavaScript - Sum of comma separated numbers

Mohammed Imtiyaz Jul 25, 2018

In this tutorial we will learn to calculate the sum of input numbers on a webpage separated by comma using JavaScript.

Convert numbers to hours and minutes in SQL

Mohammed Imtiyaz Jun 22, 2016

In this tutorial we will learn how to convert minutes to HH:MM format in SQL Server using SQL Function. This SQL Function can be used throughout the database queries.

ASP.Net - Insert and Retrieve files in SQL Server using C#

Mohammed Imtiyaz Jul 04, 2015

In this tutorial we will learn how to insert and retrieve different type of files with different file formats (E.g. Microsoft Word Document, WinRAR archive, Text Document, Image, Audio/Video, etc.) in SQL Database table using C#

Convert Seconds to Days, Hours, Minutes & Seconds in SQL

Mohammed Imtiyaz Jun 26, 2015

In this tutorial we will learn how to convert minutes to HH:MM format in SQL Server using SQL Function. This SQL Function can be used throughout the database queries.

Implement “Remember Me” in ASP.Net login page

Mohammed Imtiyaz Sep 20, 2015

In this tutorial we will learn how to implement “Remember Me” in ASP.Net login web page.

The login credentials are saved to the web browser’s cookies and will remain there for a specific time unless you clear the browser’s history. The credentials will be called the next time you login the same web page.

Hide or show ASP.Net web page controls based on radio button onClick event using JavaScript.

Mohammed Imtiyaz Feb 2, 2015

This tutorial will explain you how to hide or show ASP.Net web page controls based on radio button’s onClick event using JavaScript.

In this example, I’m taking two asp:radioButton and one asp:Button control. When I click second radio button i.e., rbtnHideButton, the asp:Button should not be displayed and when I click the first radio button i.e., rbtnShowButton, the asp:Button should be displayed. Let us see how this example works.

Display the status of checkbox when checked or unchecked using JavaScript

Mohammed Imtiyaz Dec 27, 2014

This tutorial will explain you how to display the status of a ASP.Net / Html checkbox when it is checked or unchecked, using JavaScript. In this tutorial, we will use JavaScript function on ASP.Net Web Page and Html Page.

Dynamically add items to Dropdownlist in ASP.Net

Mohammed Imtiyaz Jun 14, 2014

Some times we come across situations where we feel that some data is still required to accomplish some tasks. In my case, I came across a task where I was supposed to make a form where user can fill all the employee information at the same time. For instance if an employee belongs to some xyz city and that city is not displayed in the dropdownlist then users should be able to add that city to that dropdownlist without a full page postback. Below mentioned is a sample code which shows how to accomplish this task

Convert numbers into words on web page using JavaScript

Mohammed Imtiyaz Mar 16, 2015

This tutorial will explain you how to convert numbers to words on a web form using JavaScript

Gregorian - Hijri Date Converter

Mohammed Imtiyaz Mar 15, 2016

A windows application which allows you to convert gregorian date to hijri date and vice versa. It can run on any Windows operating system having .NET Framework 2.0 installed on the machine. (By default, .NET Framework 2.0 is installed on Windows 7 OS)

Check and uncheck all checkboxes in CheckBoxList using jQuery

Mohammed Imtiyaz Dec 10, 2014

This article will explain you how to check and uncheck all checkboxes in CheckBoxList using jQuery