Questions to ask potential joiners to a start-up

The goal of this post is to help establish some key questions to ask up front to ensure that joiners to our start-up are a good fit.We have limited financial resources so need to use other incentives like restricted stock agreements, options, sweat equity etc... to ensure joiners are adequately motivated and rewarded. We have … Continue reading Questions to ask potential joiners to a start-up

UserTesting.com – Quick and affordable usability testing

I recently came across a low cost usability testing service provided by UserTesting.com They have already worked with some impressive clients including CNN and Twitter. The co-founder of Twitter said 'Use it, and your site will get better'. I would have to agree.This innovative new solution allows developers, designers and digital marketers to quickly and … Continue reading UserTesting.com – Quick and affordable usability testing

Intranet Design – Content is King

Intranet owners must realize that users appreciate substance over flash. While the system might be great to look at, this can wear thin very quickly. Flash will result in an initial spike in system use, but the majority of these are going to be "one-night stands". If you want long term success, your intranet must have more than a pretty face.

Digital Marketing – Use Google Ads to prospect new direct advertisers

Banner advertising and direct advertising is hard work. At a simplistic level you need to find the advertisers, approach them, sell the value of advertising on you site and negotiate terms. Many entrepreneurs will be able to come up with an initial list of target companies but often the hardest part of the sales cycle … Continue reading Digital Marketing – Use Google Ads to prospect new direct advertisers

Conditional Formatting using UltraWebGrid

A code example of how to apply conditional formatting to cells in an Infragistics UltraWebGrid control using ASP.NET 2.0 private void populateSolvents(){ SolventsCollection solvents = new SolventsCollection(); solvents.GetMulti(null); if (solvents.Count > 0){   uwg_Solvents.DataSource = solvents; uwg_Solvents.DataBind(); foreach (Infragistics.WebUI.UltraWebGrid.UltraGridRow row in uwg_Solvents.Rows.All) { if (row.Cells[1].Value.ToString() == "h2o") {     row.Cells[1].Style.BackColor = System.Drawing.ColorTranslator.FromHtml("red"); } } … Continue reading Conditional Formatting using UltraWebGrid

JQuery problems with ASP.NET AJAX UpdatePanel

I recently started to use JQuery on an ASP.NET 3.5 project. The JQuery worked fine until the first async postback event when it would then stop working. The postback event seems to conflict with the JQUery Ready Function. In order to resolve this you should move all affected code to within a new function called … Continue reading JQuery problems with ASP.NET AJAX UpdatePanel