Data Binding Using BulletedList Control

ASP.NET provides several server-side controls that allow data binding. Earlier I have discussed the basics of Data Binding in ASP.NET and demonstrated it using DropDownList Control. In this article, I will explain Data Binding Using BulletedList Control which is one of the List Control available in ASP.NET. Before proceeding with data binding using BulletedList Control, let us first discuss some important points regarding this control. BulletedList […]

Long Short Term Memory – An Artificial Recurrent Neural Network Architecture

In this post, I will explain an Artificial Neural (ANN) Network Architecture known as Long Short Term Memory (LSTM). Basically, it is a type of Recurrent Neural Network (RNN). Comparing Different Types of Artificial Neural Networks (ANNs) Before discussing LSTM, let us first understand the difference between a traditional Artificial Neural Network (ANN), and a Recurrent Neural Network (RNN). Since ANN processes […]

Binding Data to Web Control in ADO.NET

In this article on Binding Data to Web Control in ADO.NET, I will explain how to bind the data values from a dataset to a web control such as List Controls. The ToolBox in ASP.NET provides many data-bound controls. However, some of these controls are the basic data-bound controls whereas some advanced controls. evidently, the advanced data-bound controls have features of CRUD operations […]

Examples of AdRotator Control in ASP.NET

Today I will explain how to include advertisements in a web application by providing Examples of AdRotator Control in ASP.NET. To begin with, the AdRotator control displays an advertisement banner on a web page of a website. For this purpose, ASP.NET provides a class known asAdRotator in the namespace System.Web.UI.WebControls. Hoe Does AdRotator Control Displays Advertisements In order to display advertisement banners, the […]

Examples of Validation Controls in ASP.NET

Basically, validation is one of the most significant tasks in creating a web application. This article will provide several examples of Validation Controls in ASP.NET. Validation Controls in ASP.NET In fact, ASP.NET provides following six types of validation controls that you can use to validate the data of a Web Form. RequiredFieldValidator CompareValidator RangeValidator RegularExpressionValidator CustomValidator ValidationSummary Required Field Validator Whenever you want to make […]

Understanding Document Object Model (DOM) in JavaScript

In this post on Understanding Document Object Model (DOM) in JavaScript, I will explain the Document Object Model (DOM) API. JavaScript is all about making your web page dynamic. Once you have decided that all HTML on the page is dynamic, you need appropriate features to do that and the Document Object Model (DOM) provides such features. In fact, the […]

Python Project Ideas for Undergraduate Students

Python is a versatile programming language that students love to work with. Accordingly, it will remain one of the most popular languages in the coming years. Hence, when you start learning python, it is helpful to develop some projects. It will enable you to develop a practical approach to learning the language. Therefore, here we list some of the Python Project Ideas for Undergraduate Students. Popular […]

PHP Projects for Undergraduate Students

Although several different programming languages have gained popularity in recent years, the PHP language still remains popular among students. Since the best way to learn a language is by developing a project, students should develop some real-life projects during their college years. Accordingly, here you can get some ideas for creating some innovative PHP Projects. Since PHP is a web-based […]

Understanding JSON Web Tokens

In this post on Understanding JSON Web Tokens, I will explain the concept of JWT. Basically, JWT or JSON Web Token is a way of securely transferring information between parties. The transfer of information takes place as JSON objects rather than plain text. Since this information is digitally signed, it can be verified also. Hence, the information can be trusted. Client Request […]

Grouping Queries in LINQ

To begin with, this post aims to make you understand Grouping Queries in LINQ. Basically, we need to group data whenever the data elements exhibit a certain common feature. In other words, some of the members of a sequence share a specific value for an attribute while other members may have another value for that attribute. Specifically, this common feature […]