TipsOnLips.net

Your .net tips and tricks source

About the author

Author Name is someone.
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010


Web Tools & Utilities

  1. Em Calculator
  2. Browser Shots
  3. Pingdom Tools - Full page test
  4. Load Impact

Categories: CSS | Performance
Posted by developer on Wednesday, June 10, 2009 5:11 AM
Permalink | Comments (0) | Post RSSRSS comment feed

CSS Articles 2009 Q2

  1. The difference between "The Flow" and "Positioning" for Web Pages
  2. Auto Positioning for Absolute Elements
  3. Margins and Absolute Positioning
  4. Rethinking CSS Image Replacement 
  5. Nine Techniques for CSS Image Replacement
  6. Revised Image Replacement
  7. The Incredible Em & Elastic Layouts with CSS
  8. How To Create an IE-Only Stylesheet
  9. ICommonComponentService
  10. Adaptive CSS-Layouts: New Era In Fluid Layouts
  11. Design and Code a Slick Website from Scratch – Part I & 2
  12. CSS: A tribute to selectors
  13. 18 Awesome Photoshop Text Effect Tutorials
  14. 10 astonishing CSS hacks and techniques
  15. 15 Effective Tips and Tricks from the Masters of CSS

Categories: CSS
Posted by developer on Wednesday, June 03, 2009 8:17 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Analyse ASP.NET application for hidden errors HowTo

1) Use the Global Application_Error for Global.asax to monitor hidden errors.

2) Use the Web Developer Utility


Categories: ASP.NET | CSS | HowTo
Posted by developer on Friday, March 20, 2009 11:39 AM
Permalink | Comments (0) | Post RSSRSS comment feed

ASP.NET RegisterStartupScript - HOW-To

if (!this.Page.IsClientScriptBlockRegistered("hideMessage"))
{ this.Page.RegisterStartupScript("hideMessage", 
	"<script>document.getElementById('" + pnlMessage.ClientID + "').style.display = 
				 'none'</script>;"); }


Categories: ASP.NET | C# | CSS | HowTo | JavaScript
Posted by Admin on Wednesday, March 18, 2009 7:57 AM
Permalink | Comments (0) | Post RSSRSS comment feed

CSS Resources

  1. CSS Shorthand Guide
  2. Introduction to CSS Shorthand
  3. 13 Training Principles of CSS Everyone Should Know 
  4. 50+ Nice Clean CSS Tab-Based Navigation Scripts 
  5. NEW dynamic basic CSS TEMPLATES 07 
  6. 53 CSS-Techniques You Couldn’t Live Without
  7. CSS Validator 
  8. CSS Compressor 1, 2 and 3  
  9. [more]CSS cheat sheets 1, 2, 3 and 4
  10. 10 Excellent CSS Tips and Tutorials
  11. Web Design Library 
  12. CSS Menu 
  13. CSS Hacks: Removing the horizontal scroll bar
  14. Create Smaller CSS Files
  15. Rounded Corners Using CSS 
  16. The CSS Video Crash Course
  17. HTC Reference 
  18. HTML and CSS (MSDN)
  19. CSS Properties: Display vs. Visibility
  20. Multi-Column Layouts Climb Out of the Box 
  21. CSS: the white-space property
  22. CSS Hacks Used for IE
  23. Rounded Corners in Internet Explorer: Staying Ahead of the Curve
  24. Links from Stylin' with CSS
  25. Multi-Column Layouts Climb Out of the Box
  26. Free CSS Menus and Layouts
  27. Centering Your Web Site With CSS
  28. 7 Ways to Quickly Rate Website Quality
  29. 70+ Practical Cheat Sheets For Web Designers And Developers
  30. 20 Ways to Keep Clients Coming Back For More
  31. 15 CSS and HTML Tutorials You Can Use In Your Projects
  32. 10 Great CSS Selectors you must know
  33. CSS EXPLAINED: 6 Excellent tips to become a Master in CSS
  34. 40 Outstanding CSS Techniques And Tutorials
  35. 70 Expert Ideas For Better CSS Coding
  36. An annoying IE position: Relative and OverFlow-Y Bug
  37. www.positioniseverything.net
  38. Ten CSS tricks you may not know
  39. All about floats

Categories: CSS
Posted by developer on Saturday, January 31, 2009 2:18 PM
Permalink | Comments (4) | Post RSSRSS comment feed

Add Print CSS tags (@media print)

When applying a print.css to a master page, if the content page has the theme referencing an existing them,

then it does not show an image. The way to do it is to use this statement in the Css file;

 

@media print

{

…Print Css tags

}

@media screen

{

….Normal Css tags

}


Categories: CSS
Posted by Admin on Monday, August 13, 2007 4:52 AM
Permalink | Comments (1) | Post RSSRSS comment feed