Here is some code to run a javascript function on the client side when a value changes in a drop down box. In this case I have a list of dates populating a drop down box. When the date changes the value of a DIV section changes to a corresponding end date. In the appSetting […]
Month: November 2006
How to send an email by authenticating with any mail server
If you want to send an email from an application that might not be on a server that allows relaying you can use the System.Net.NetworkCredential. Just add your account login and password and your email will route through the remote server. Dim sTo As String = “someone@someemail.com“ Dim sFrom As String = “me@myemail.com“ Dim […]
Network Speed Test
How fast is your Internet connection? Here’s mine from my server’s co-location facility: Run a speed test yourself and let me know your results.
Restore Database and Database User
When restoring an SQL Server 2005 database from a different database instance the database login will be orphaned. Use this SQL script to fix the orphaned login. sp_change_users_login ‘Auto_Fix’, ‘user’, NULL, ‘password’ Actual syntax:sp_change_users_login [ @Action = ] ‘action’ [ , [ @UserNamePattern = ] ‘user’ ] [ , [ @LoginName = ] ‘login’ […]