C# Switch Case Order Doesn’t Matter
The order of C# switch case statements in your code has no effect on performance. (more…) ShareThis
The order of C# switch case statements in your code has no effect on performance. (more…) ShareThis
This article is the second installment of a four-part series that examines how to build a data-driven web applications that offers dynamic user interfaces. Over the course of this article series we will build a complete and functional web application with a dynamic, data-driven user interface. Specifically, the demo application is a fictional website used by numerous law firms to manage their clientele
F9 Group, inc. has been creating automation systems to capture name and address for over 7 years.
F9 Group, Inc’s name and address capture system is in over 45 countries world wide and expanding. With offices and affiliates in 16 countries F9 Group’s name and address capture systems are able to grab your customer’s name [...]
Microsoft has released Service Pack 1 for Visual Studio 2008 and .NET 3.5. This update patches numerous bugs, improves performance, and even adds a few new features. As a .NET commercial software developer, I am most excited that SP1 provides a .NET Framework installation optimized for client applications. The optimized download is less than 28 MB, compared to the original 200 MB download that all but ensured consumers would not download .NET 3.5 and hence forced us to remain on .NET 2.0 (see FAT .NET ). Read more… ShareThis
Most data-driven web applications have a fixed data model and user interface. What I mean by “fixed” it that the data it needs to be captured is known in advance. Consequently, the database’s tables are created before a single line of code is written and the application’s user interfaces are dictated by this pre-determined data model. While most applications work with a fixed data model there are scenarios where the parts of the data model need to be defined by the end user. Such applications are more difficult to create because both the data model and user interface need to be flexible enough to allow the user to specify the information to be captured
How do you sort a C# array in descending or reverse order? A simple way is to sort the array in ascending order, then reverse it: (more…) ShareThis
The C# and PHP portions of the F9 Group blog is a site content aggregator. The content of the postings is owned by the respective author.
Designated trademarks and brands are the property of their respective owners. All rights reserved.
Share and Enjoy:
ASP.NET includes a number of data source and data Web controls that make it remarkably easy to work with data from a web page. For example, to display the results of a database query simply add and configure a SqlDataSource control and then bind that to a GridView, ListView , or some other data Web control. There’s no need to write any source code; the data source controls allow declarative access to data. For more information on working with data in ASP.NET see my Accessing and Updating Data in ASP.NET article series and Working with Data tutorials. The GridView and ListView controls are great for displaying a set of records, while the DetailsView and FormView controls are ideal for displaying information about a single record.
ASP.NET web pages commonly display messages in response to user actions. For instance, a typical CRUD (Create, Read, Update, Delete) web page might display the message, “Record deleted” immediately after deleting a record and the message “Record updated” immediately after updating a record