I was looking for a quick and dirty way to filter a table that I got as the result of a search on a webpage. For a one-time effort, I could print it to a pdf. However, I wanted to only keep certain rows in that table. I could load it to an excel […]
Adding a secure and trusted HTTPS certificate to your localhost Visual Studio Code website
If you are developing a Visual Studio .Net project with Visual Studio, Visual Studio will take care of setting up the SSL on your localhost. However, if you are not aiming for a .net project. you will have to set it up yourself. You need to create an SSL certificate and then reference it in […]
Bootstrap navbar used to reverse orientation of a list
Bootstrap navbar is awesome for adding a navigation line and having it collapse to a button for a small screen. However, navbar is also useful when you don’t want it to collapse, but, instead, to change its orientation from horizontal to vertical and back when the screen size changes. Here is the code to acheive […]
Add a QR code to your website using asp.net
Sometimes a QR code is the easiest way to direct people to your website. QR codes can be used in many ways. QR code on your restaurant table to open a menu QR code on an electoral campaign postcard to open more information about a candidate QR code to open the playbill for a play […]
Using ajax to submit an array to an asp.net page
The following submits an array of strings to an asp.net razor page for handling. It is not straightforward how to submit an array for processing. You have to first stringify it before sending with ajax. Once it is received, you have to then deserialize it into a List.. Suppose you have an array of strings: […]