Great MySQL mysqldump Split Utility

November 26th, 2008
If you are in a situation where you don’t have access to mysql via command line to import your mysqldump file and need to use phpMyAdmin but limited to the size that you can import SQL Dump Splitter will help you keep your sanity. It will split the files into smaller split files from the master [...]
Read more on Great MySQL mysqldump Split Utility »

My Essential Developer’s Toolbox – Part II

November 25th, 2008
This is Part II of the My Essential Developer’s Toolbox post reviewing some of the tools I use on a regular basis. If you missed Part I of the My Essential Developer’s Toolbox I listed some IDEs for ASP.NET, PHP, other open source technologies as well as Database Management applications for Microsoft SQL Server and MySQL. [...]
Read more on My Essential Developer’s Toolbox – Part II »

My Essential Developer’s Toolbox – Part I

November 23rd, 2008
This is a multi-part post that lists all of the tools that I use on a regular basis as a web developer. The list is Microsoft Windows centric but I will point out the applications that are cross-platform (as best as I can). IDEs (Integrated Development Environment)* Microsoft ASP.NET Both of the IDEs below are top notch and [...]
Read more on My Essential Developer’s Toolbox – Part I »

PHP implode() Function with C#

November 23rd, 2008
The following snippet will join values in an array with a specified separator. string[] items = new string[] { "one", "two", "three" }; string.Join(", ", items);
Read more on PHP implode() Function with C# »

Missing ASP.NET Tab in inetmgr

November 23rd, 2008
If your ASP.NET tab has disappeared (mine was caused by installing ISAPI_Rewrite) then the following MSDN blog article has a tool you can use to fix it. http://blogs.msdn.com/tom/archive/2008/04/17/asp-net-tab-missing.aspx
Read more on Missing ASP.NET Tab in inetmgr »

Awesome Outlook Search Plugin

November 22nd, 2008
I’ve been using the Xobni (inbox spelled backwards) plugin for almost a year without issue. It will help you save a lot of time searching for your messages and attachments much faster than the built in Find utility. I suggest you install it and give it a spin. It’s free so what do you have [...]
Read more on Awesome Outlook Search Plugin »

Find a Nested Web Control within a Web Control with C#

November 20th, 2008
I was having issues accessing a web control directly within a user control and used the following to access the web control within a LoginView in the User Control. The same syntax below can be used if you are looking for a nested control within a control. System.Web.UI.WebControls.Literal name_literal = (System.Web.UI.WebControls.Literal)this.LoginView1.FindControl("name"); name_literal.Text = "Text goes here"; [...]
Read more on Find a Nested Web Control within a Web Control with C# »

Sponsors