This code will show you how to encrypt user passwords with md5 algorithm and how to start using encrypted passwords if you already have users' database ready.
MS SQL RD4 Encryption ASP.NET / .NET and Databases
This is a simple RD4 encryption stored procedure. It's nice because it uses the same procedure to encrypt and decrypt and it beats using a cast as varbinary! .
Database Access Within an Assembly ASP.NET / .NET and Databases
We can easily connect a database server within an assembly. After we compile this source code you can access your database provider. In tis source code I have used SQL Server.
Database Access Within an Assembly ASP.NET / .NET and Databases
We can easily connect a database server within an assembly. After we compile this source code you can access your database provider. In tis source code I have used SQL Server.
Accessing MySQL Database with ASP.NET ASP.NET / .NET and Databases
In this step by step tutorial we will learn how to obtain, install, configure and run MySQL database on Windows. We will then move on to create a table in MySQL database, populate this table with some records and then display those records in the browser using an ASP.NET page.
How to Save an Image in a SQL Server Database ASP.NET / Dynamic Images
Most of the web applications have a lot of images used in it. These images are usually stored in a web server folder and they are accessed by giving the relative path to the file with respect to the root folder of the website. .Net being the platform for distributed application now, ASP.Net can be used to store images that are small to be stored in a database like SQL Server 2000 and later versions. For this purpose the SQL Server database provides a data type called "image" which is used to store images in the database.
Connecting to a SQL database from ASP .NET II ASP.NET / .NET and Databases
This is part II of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to connect to the database using ASP .NET code and Visual Studio .NET's features.
Connect to Access Database in Visual Studio .NET ASP.NET / .NET and Databases
This tutorial uses DataReaders to read the data from a Microsoft Access Database in Visual Studio .Net 2003. ASP.NET web application is used in this tutorial so at the end you will have a web page that derives its data from an Access database.
Connecting to a SQL database from ASP .NET I ASP.NET / .NET and Databases
This is part I of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to set up MSDE for Mixed Mode and how to use Web Data Administrator to create databases and users.
Custom Paging results in ASP.NET using A Better Way ASP.NET / Site Navigation
This source code is very useful for all web developers who wants to divide their database results into pages. You can easily modify source code to use in your applications. Script can display numbers of total pages and a Next/Previous link. Script uses two database connection and uses less server memory.
How To Use Refactoring To Handle Multiple Versions of Classes ASP.NET / General Development
Recently, I had a requirement to put together a website that deals with taking somewhat elaborate financial surveys. While the questions and answers themselves are good candidates for being database driven, there were a large number of nuiances ranging from UI items, business rules, and calculations that just didn't fit into a database driven strategy. With this in mind, my initial strategy was to create version specific classes and reference them in version specific ASP.NET pages/