Preventing SQL Injection in ASP.NET
18 Jun 2010 Leave a Comment
in ADO.Net, ASP.Net, SQL Tags: Preventing SQL Injection
This article will provide neccessary information to prevent sql injection in asp.net and this article examines just how serious a flaw vulnerable coding can be, and what you should do about itMore…
Image Cropper Control in ASP.Net
18 Jun 2010 Leave a Comment
in ASP.Net Tags: Image Cropper Control
Asp.net Web Crop Image Control allows developers to build image cropping functionality easily on their projects.
Web based image cropping. This is an “Asp.net server control” to allow developers to implement image cropping functionality on their projects easily.More…
Building a Photo Tagging Application using ASP.NET 2.0, LINQ, and Atlas
06 Jun 2010 Leave a Comment
in ASP.Net, Atlas, Linq Tags: Atlas, Building a Photo Tagging Application using ASP.NET 2.0, LINQ
For my photo-browser I wanted to implement a “tag cloud” on every page of the site that lists the most popular tags in use on the left-hand side, and enables users to be able to click a tag within the “tag cloud” to filter the pictures by them More…
Introduction to WCF in ASP.NET and VB.NET
11 Mar 2010 Leave a Comment
in VB.Net Tags: ASP.Net, VB.Net, WCF
This tutorial will guide you through creating and consuming your first WCF Service using Visual Studio 2008 and VB.NET
This tutorial was created with Microsoft Visual Studio .NET 2008 using WCF. WCF was implemented into the .NET Framework in 3.0, and received an update in 3.5, this tutorial is directed at users of Visual Studio.NET 2008 and ASP.NET 3.5 More…
Introduction to ADO.Net
08 Mar 2010 Leave a Comment
in ADO.Net Tags: ADO.Net, ASP.Net
ADO.NET is an object-oriented set of libraries that allows you to interact with data sources. Commonly, the data source is a database, but it could also be a text file, an Excel spreadsheet, or an XML file. For the purposes of this tutorial, we will look at ADO.NET as a way to interact with a data base.
As you are probably aware, there are many different types of databases available. For example, there is Microsoft SQL Server, Microsoft Access, Oracle, Borland Interbase, and IBM DB2, just to name a few. To further refine the scope of this tutorial, all of the examples will use SQL Server. More…
ASP.NET MVC is not all about Linq to SQL
07 Mar 2010 Leave a Comment
in ASP.Net, Linq, SQL Tags: Linq to sql
Pretty much every sample application that illustrates ASP.NET MVC uses Linq To SQL or the Entity Framework as the data access method. I’ve seen a number of questions posted to the forums at www.asp.net asking if there are any alternatives, and indeed there are. This article will look at using plain ADO.NET within a data access layer to provide dynamic content to a typical small CRUD application.More…