Justin Cooney
Web Development Tips and Examples
Category: Programming
-
Windows PowerShell gives you a powerful interface when working with your computer. A basic task when working with PowerShell is escalating your permissions so that scripts you run have enough access to do the tasks you want them to do. By default your permission level in PowerShell is quite restricted and you will need to…
-
Using the JavaScript showModalDialog function is a useful way for Web developers to create a modal popup. Unlike other popup functions, the showModalDialog function makes use of two separate HTML pages… one page as the parent page, and one page as the content of the modal dialog. Developers will sometimes want the modal popup to be more…
-
By definition, a scalar query will return the first column of the first row of a database query. In plain English this means it will return a single value. This can come in handy at times. In the next series of articles I will cover the basic data connections including basic examples in C# and…