There are a few tasks in programming that are tedious. Instead of working out the logic, time is spent creating properties or repetitively typing code with a syntax that include lots of special characters. Intellisense is great for these sorts of things, but sometimes it’s not quite enough. Code Snippets to the rescue! If youContinue reading “Code Snippets in Visual Studio”
Author Archives: ohlerem
SQL Paging
Paging in SQL is a technique that allows you to pull chunks of rows from a dataset at a time. They would be called pages. I like to use this behind partial page updates. Specifically a grid or table uses “infinite scrolling”. As the user scrolls to the bottom of a table, a javascript eventContinue reading “SQL Paging”
Fixed Table Header
Have you ever wondered how to make your table’s column headers remain visible as you scroll down through the rows? There are quite a few solutions available, but the simplest by far, is to use a little CSS trickery. First Name Last Name Peyton Farrell Caprice Barclay Aaran Blackburn Libbie Cordova Florence Marriott First ofContinue reading “Fixed Table Header”