With Microsoft’s recent announcement that they will begin shipping jQuery with Visual Studio, the little Javascript framework is about to hit the big time (it was already sort of big time, but this is BIG TIME). And rightfully so. I have been a Prototype and Scriptaculous user for over a year now. But I am [...]
Get ASP.NET DropDownList Selected Value with jQuery
by byron on October 31, 2008 in ASP.NET/C#, Javascript Frameworks, Web Development
C# – Get a Random Number Between x and y
by byron on October 31, 2008 in ASP.NET/C#
Here’s a quick function for getting random numbers in C#: Notice that you have to declare your instance of the Random class outside of the GetRandomInt function if you are going to be running this in a loop. “Why is this?” you ask. Well, the Random class actually generates pseudo random numbers, with the “seed” for [...]
ASP.NET – C# – Emulating the VB Control Array – Pt. 1
by byron on October 29, 2008 in ASP.NET/C#
For you veterans of VB6, the control array probably became an old friend, or at least an annoying neighbor if you didn’t like them. You couldn’t help run across the concept in VB6 because every time you copy and pasted a control for the first time, you got asked if you wanted to create a control array. If [...]
C#: Convert Double to Integer…and other conversions
by byron on October 1, 2008 in ASP.NET/C#
Type conversions and casting in C# are so whack! Microsoft created the System.Convert class to bring some sanity and predictability to converting from one type to another in C#. Without further ado, to convert a Double to an Integer, you can use: int myInt = System.Convert.ToInt32(myDouble); The System.Convert class has the following methods: ToBoolean ToByte [...]
ASP.Net C# – PHP Equivalents
by byron on September 17, 2008 in ASP.NET/C#
On this post, I will be collecting ASP.NET C# commands that I use frequently in PHP but I have to continually look up in the little bit of ASP.NET that I do. PHP can be frustrating for its inconsistencies in syntax, but what is even more frustrating is when you’re trying to do something in [...]
ASP.NET/C#: Convert HTML Colors to System.Drawing.Color
by byron on May 14, 2008 in ASP.NET/C#
HTML colors come in all sorts of flavors: hexadecimal (#0066ff), named colors (e.g. LightSkyBlue…here’s the link). Many people may be very comfortable with working with HTML colors, so if you’re in C# and needing to get the .Net equivalent, you can translate directly from HTML colors with System.Drawing.ColorTranslator.FromHtml(). Here’s the usage: System.Drawing.Color myColor = System.Drawing.ColorTranslator.FromHtml(“Red”); [...]
Recent Posts
Popular Posts
- Excel Spreadsheet of US States
- Get ASP.NET DropDownList Selected Value with jQuery
- Javascript: How to get an Object's ID
- ASP.NET - Get User Name Under Windows Authentication
- SAP: Deciding about SAP-BPC (nee Outlooksoft)
- WordPress: Get Category ID for a Category Page
- PHP: What is the & Ampersand Preceding Variables
Tags
Categories
- Accounting (1)
- adobe air (1)
- ASP.NET/C# (16)
- Blogging (8)
- Books/Movies (1)
- Food/Travel (1)
- Google (1)
- iOS (3)
- iTunes/iPod (1)
- Javascript Frameworks (3)
- jQuery (3)
- Mac (4)
- Microsoft Excel (7)
- Microsoft Outlook (1)
- Miscellany (13)
- PHP (8)
- Productivity (6)
- Programming (7)
- SAP (52)
- Software (2)
- SQL (2)
- Web (5)
- Web Development (13)
- WordPress (18)
- WordPress Plugins (3)
- WordPress Themes (3)
- Words/Quotes (1)
- Worksoft Certify (6)
- YouTube (2)


