Author Archives: eSearing

About eSearing

Webdeveloper, Photographer, political junkie.

Why I hate Windows 8

Then new windows 8 interface looks cool until you actually use it on a Laptop. For people who constantly switch back and forth from various programs, web, email, etc the new interface gets in the way. A PC is not … Continue reading

Posted in Products, Software | Tagged | Comments Off on Why I hate Windows 8

CF linebreaks in excel same cell

By default when you add the BR tag inline Excel will interpret that as you want a new cell. We sometimes merely want a line break. When outputing to excel use this syntax in your code to keep linebreaks in … Continue reading

Posted in Coldfusion, Snippets | Tagged | Comments Off on CF linebreaks in excel same cell

Book: Learning Web Design

I found a copy of Learning Web Design – a beginners guide to HTML, CSS, Javascript, and web graphics (4th edition) by Jennifer Niederst Robbins at my local library. Thumbing through it I saw some references to HTML5 and CSS3 … Continue reading

Posted in Products | Tagged , , , , | Comments Off on Book: Learning Web Design

Twitter Bootstrap Framework

For the last few days I have used Twitter’s Bootstrap framework to build a couple of pages. It is responsive to screen widths (mostly) and can conform to HTML 5 practices. I found it to be a bit heavy on … Continue reading

Posted in CSS, JQuery, Products, Web Development | Comments Off on Twitter Bootstrap Framework

MSIE 9 bug – enctype multipart/form-data

Fixing Coldfusion error message Invalid content type: application/x-www-form-urlencoded.The files upload action requires forms to use enctype=””multipart/form-data””. It is a bit misleading since we usually list the enctype. However for MSIE 9 Encoding must be there too. <CFForm action=”somepage.cfm” method=”put”, enctype=”multipart/form-data”, … Continue reading

Posted in Code, Coldfusion, Javascript, Problems & Fixes | Comments Off on MSIE 9 bug – enctype multipart/form-data