MVC: URLs with Multiple IDs

Please see my other MVC articles. Update Routing to Handle Multiple ID URLs In this article, I’ll demonstrate how to use multiple values in a URL without the use of QueryString variables. In the RouteConfig class, map a new route as follows. Note: I specified a controller as this URL will only be used for this controller, and…

OOP: Interfaces Ensure Consistent Behavior

Please see my other Object-Oriented Programming (OOP) articles. Apply Contracts Between Objects with Interfaces In this article I’ll demonstrate how to ensure consistent behavior when designing an application. I’m going to build an airport that only accepts types of craft which behave in a consistent manner. Also, when the airport is in operation, I want to ensure…

Telerik Reports: Customized Layout

Use customized layouts to mimic print-based reports. Please see my other Telerik report articles. Telerik not only offers many power capabilities to produce standard tabular reports (see other articles), but I can also create highly customized layouts like the following report. Note the precision positioning of many fields, dynamic tables which grow/shrink as needed while conserving vertical…

R: Create a Series Function

Use a function to produce a series In this article I’ll demonstrate how to use the R language to create a function to produce a series, then print it to the screen. First, I’ll declare a function which produces a series from 1-5, assign it to the variable ‘f’, then invoke the function, which prints…

R Statistical Programming

Please see my other Business Intelligence articles. R  is an open source implementation of statistical programming language S, a programming language and environment in which to program, and provides ability to analyze data statistically and visually. Please click the links below to view examples. R Create a Series Function