At work, there are times when we need to publish web pages with embargoed content for review by stakeholders. Often it’s too much hassle to add some basic password protection to the page to prevent unwanted visitors. All you really … Continued
Last week I had to go through IIS web logs to troubleshoot an issue one of the websites I look after at work. Fortunately for me I found Log Parser Studio. LPS is a GUI for Log Parser and makes … Continued
This week I learned how important the radix parameter for the javascript parseInt is. I implemented my own custom date string parser and discovered that older versions of Firefox behaved differently when running the following line. var month = parseInt(’08’); … Continued
This week I started working on a new file uploader for the company website admin. The current version uses the HttpPostedFile SaveAs method to save the file to a temporary directory before uploading to the web server using FTP. I … Continued
In the past couple of weeks at work I’ve being rewriting a .NET console application that imports data and runs as a schedule task on a server. I’ve had to work on few of these sort of apps as a … Continued