Your Ad Here

Common CSS Mistakes

Written on October 27, 2009 – 8:35 am | by tihomir_wwf |

1. Repetition of same code border-top:1px solid #f00; border-right:1px solid #f00; border-bottom:1px solid #f00; border-left:1px solid #f00; Each border is the same! So, it can be replace with: border:1px solid #f00; 2. Duplicate Color Codes color:#aabbcc; Write the code like this instead: color:#abc; 3. Not applying more than 1 class at a time .classA {background-color:#f00; [...]

Tags:

C# Tips and Tricks

Written on October 20, 2009 – 5:19 am | by tihomir_wwf |

1. Convert a string to a Byte[] array: byte[] string2byteArr = System.Text.UnicodeEncoding.GetBytes(“Some String”); 2. Lazy load something rather than Foo foo; public Foo Foo { get { if (foo == null) { foo = new Foo(); } return foo; } } you can try: Foo foo; public Foo Foo { get { return foo ?? [...]

Tags:

ASP.NET Script Collection WebSites

Written on October 12, 2009 – 4:55 am | by tihomir_wwf |

Are you searching for asp.net script, applications or controls? Do you want to compare similar scripts? Here is a list of site where you can find info about asp.net scripts 411asp.net Directory of ASP.NET applications, scripts, tutorials, assemblies, and references arranged by reviews, price, version, and hits. Currently you can find info about 563 Web [...]

Cool WebSites October 2009

Written on October 4, 2009 – 1:36 pm | by tihomir_wwf |

1.Le Mйridien Etoile URL: http://www.lemeridienetoile.com/experience/ 2. 310k of pure magik URL: http://www.310k.nl 3. ZOOGAMI: CONTEMPORARY BEER URL: http://www.zoogami.net/beer/ 4.ARK PORCELANOSA GRUPO 2009 URL: http://www.ark-plus.com 5. Miguel Endara URL: http://www.miguelendara.com/ 6. Emilie Guelpa, Art director Freelance URL: http://www.onthesly.fr 7. FOXTEL I am uniQue – build a uniQue interactive URL: http://www.iamunique.com.au 8. Concave Scream URL: http://www.concavescream.com/

Tags: , ,