Generating Text Images on the Fly with ASP.NET ASP.NET / Dynamic Images
Have you ever needed to have an image of some text generated dynamically on the fly? There are tons of possible applications for this type of thing which I won't go into, but prior to ASP.NET it was a relatively difficult thing to do.
Counting Records In ASP.NET ASP.NET / .NET and Databases
The following source code displays count of all records in a database. We will use a data command to execute an SQL statement that will return with count of records. Source code written in Visual Basic.NET can easily modify to work in an application.
Counting Records In ASP.NET ASP.NET / .NET and Databases
The following source code displays count of all records in a database. We will use a data command to execute an SQL statement that will return with count of records. Source code written in Visual Basic.NET can easily modify to work in an application.
Display Number of Users Online ASP.NET / General Development
The following ASP code will allow you to Count and Display the amount of visitors that are currently on or viewing your website.You will have to save this ASP code into a file called 'global.asa', which must be uploaded to the root of your webserver.
Includelets ASP.NET / Functions
A common way to build the navigation and layout for an ASP-driven website is to use include files. Most advanced ASP developers know that when you do this, it is best to encapsulate the functionality of the include file in a Sub or Function, and then to call this routine from the page that is including the file.
Databinding ASP.NET / Controls
This tutorial covers one of ASP.NET's most useful features: databinding. A number of controls within ASP.NET have the capability to understand the form and content of a collection and to render the correct tags to represent such user elements as list boxes, radio button lists, and combo boxes. Here we'll examine how these controls work and how to use them on a Web page.