" Live as if you were to die tomorrow. Learn as if you were to live forever.. "
- Mahatma Gandhi

Fixing Reporting System UI issue in IE8

Posted on November 24th, 2015 by Sachin Kumar

Problem : Reporting service is a powerful Sql Server tool for generating neat and robust reports. It has also good cross-browser compatibility except for some issues with IE8.In IE 8.0, report columns are cut off as they reach the maximum width of the control,so alignment of report in report viewer is not proper, etc. Solution […]

Retrieve Hex Code of RGB format color to avoid cross browser back color issue

Posted on November 23rd, 2015 by Aditya Acharya

At times we need to calculate the equivalent hexadecimal code of the RGB color format to avoid cross-browser compatibility issue. For instance, you want to get the background-color of elements but the result is different for each browser. E.g. <div id=”divTemp” style=”background-color:#FEFEEE”> When you try to get the backcolor of the above given div using […]

How to clear a fileupload control in IE and Mozilla using Javascript

Posted on November 23rd, 2015 by Ashabari Jena

When we want to clear a fileupload control on onchange event using javascript , either it is working in IE or in mozilla. Here is a simple solution for both IE or Mozilla : When we try to clear fileupload control on OnChange event using Javascript, we often find that the code we have added […]

A cool CSS effect : Set different color when user select text in web pages

Posted on November 23rd, 2015 by Anita Bhanja

A cool CSS effect : Set different color when user select text in web pages Difficulty Level: Beginner You all might be knowing this. When we select some text the default background color is Blue. But we can override font and background color on selection. CSS property : A generic setting for all the text […]

CSS Hack: Using images with space character in file name

Posted on November 23rd, 2015 by Aditya Acharya

For us the following two file names may not hold much difference but when using CSS we have to take care of the space between the file names. 1. Page background.jpg 2. Page_background.jpg For instance, to set a background image of a page using CSS we would have to add the following two lines of […]