AJAX Tab Container – Style Problem
November 1, 2009 by Nauman · 3 Comments
Cause Since the release of ASP.Net 2.0, all the pages’ DTD are set to XHTML 1.0 Transitional by default. Consequently, AJAX Control Toolkits were also created to adhere with standard. All the rendered AJAX controls will follow the said document type definition. As it turns out, our page only adhere to HTML 4.01 Transitional DTD [...]
CSS – Conditional Statements
November 1, 2009 by Nauman · Leave a Comment
For CSS to work in cross browser environment, we have to write some conditional statements to make our styles look same in all the browsers. Below is the sample code that demonstrate how to write conditional statement tin CSS. <html> <head> <title>Conditional CSS</title> <style type="text/css"> body { color:blue; } </style> <!–[if IE 7]> <style type="text/css"> [...]