It is a relational database management system for building business applications with increased data protection. The SQL server acts like an 'engine' providing enhanced performance for data access and delivery of data from your server
Published on Wed, 21 May 2008 08:05:47 -0400 Read: 48 times
Because multiple users can visit the same web page concurrently, it is possible for a user visiting a data modification page to inadvertently overwrite
the modifications made by another user. Consider a page with an editable GridView. If two users visit this page simultaneously from different computers
and both edit the same row, whomever saves the... Read Article.
Published on Wed, 14 May 2008 08:02:22 -0400 Read: 146 times
Most security systems' passwords are case-sensitive. Case sensitivity nearly doubles the number of possible characters that can appear in the password, which
makes it harder for nefarious users trying to break into the system. As a result, if a user logging into the system has Caps Lock turned on, they'll
enter letters in the opposite case and... Read Article.
Published on Fri, 09 May 2008 08:02:07 -0400 Read: 51 times
Microsoft's ASP.NET AJAX Framework helps page developers design more interactive web pages by streamlining the postback mechanism. In traditional web pages,
a full postback involves the browser re-requesting the page, which is then re-rendered. This re-rendered page markup is returned, in its entirety, to
the browser for display. Ajax techniques improve... Read Article.
Published on Wed, 30 Apr 2008 08:02:11 -0400 Read: 25 times
ASP.NET includes a variety of tools for displaying and editing XML documents. A previous article, Working
with XML Data Using LINQ, a TreeView, and a ListView :: Displaying Data, showed how with a TreeView control, a ListView control, an XmlDataSource control,
a LinqDataSource control, and about 50 lines of code we could create a web page that displayed... Read Article.
Published on Wed, 23 Apr 2008 08:02:52 -0400 Read: 42 times
With more and more data being stored in XML, web applications today commonly need some way to view and edit the data stored in an XML file from a web
page interface. If the XML data is relatively "flat" and tabular in nature, we can use data Web controls like the DataGrid, GridView, and Repeater. (See Quickly
Editing XML Data for an example of editing... Read Article.
Published on Thu, 17 Apr 2008 08:02:46 -0400 Read: 33 times
The Membership system automatically tracks the last
date and time each user's account has been accessed. With the SqlMembershipProvider, this information is
stored in the aspnet_Users database table in a datetime column named LastActivityDate. This
column is automatically updated to the current UTC date and time whenever a user
logs into the site,... Read Article.
Published on Thu, 10 Apr 2008 08:02:43 -0400 Read: 53 times
My family enjoys playing games and one of our favorites is Boggle, an addictive word game where players attempt to find as many words in a 4x4 grid of
letters. At the end of a game, players are left wondering whether there were any unearthed words. To answer this question once and for all, I created an
online Boggle solver using ASP.NET version 3.5.
This... Read Article.
Published on Wed, 02 Apr 2008 08:02:34 -0400 Read: 60 times
I spend most of my day writing about ASP.NET or building ASP.NET applications for clients. As every ASP.NET developer knows, the bulk of ASP.NET development
centers around data access - building pages to collect user input and crafting reports to summarize that information. To help break this monotony, I
occasionally set aside an afternoon to work on... Read Article.
Published on Wed, 26 Mar 2008 08:02:43 -0400 Read: 30 times
Over the past four installments in this article series we have: created a SQL Server database for our web application; created an ASP.NET web page that
enabled the visitor to upload an Excel spreadsheet and view its contents in a GridView; and created a Data Access Layer (DAL) using Typed DataSets
for accessing our application database. All that remains... Read Article.
Published on Wed, 19 Mar 2008 08:02:45 -0400 Read: 33 times
Over the course of the past three tutorials we have created an ASP.NET page that allows the visitor to upload and display an Excel spreadsheet in a
GridView. Our end goal is to allow the user to import the rows in the spreadsheet into the two tables of our application database, a task we will complete
in this fourth installment.
In Displaying the Uploaded... Read Article.
Published on Fri, 14 Mar 2008 08:04:21 -0400 Read: 45 times
Chris A. Ortiz provides a great example of an organization that struggled to implement lean manufacturing but did not experience the desired success.... Read Article.
Published on Wed, 12 Mar 2008 08:03:46 -0400 Read: 18 times
In Building the Importer Web Page and Uploading the Excel Spreadsheet we created
an interface for users to upload an Excel spreadsheet to the web server with the end goal being that a user could import the uploaded spreadsheet's
data into the application database. Before importing the data, it would be prudent to display the contents of the uploaded... Read Article.