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…

Telerik Reports: Filtered Columns

Filter Column Data Off Other Column Please see my other Telerik report articles. In the article I’ll demonstrate a four column report where two columns display data based on their relationship with their “parent” column. As you can, the report begins with a county, then region, then two coordinators – primary and assistant. First, I’ll create a…

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

GitHub: Commit

Using Git to Track/Record Changes In my last article I demonstrated how to use the Git bash command-line to setup a new repo. In this article, I’ll show how to use commit to track and record changes. I’m starting with an empty repo so first I’ll add a new blank readme.md. Now, I’ll see if…