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


WCF ABC

  • "A" stands for Address: Where is the service?
  • "B" stands for Binding: How do I talk to the service?
  • "C" stands for Contract: What can the service do for me?

  • Categories: WCF
    Posted by developer on Friday, October 23, 2009 3:31 AM
    Permalink | Comments (1) | Post RSSRSS comment feed

    Get Number Of DOM Elements using JavaScript

    The number of DOM elements is easy to test, just type in Firebug's console:
    document.getElementsByTagName('*').length

    Other sources: http://getfirebug.com/console.html

    Categories: HTML
    Posted by developer on Tuesday, October 20, 2009 10:59 PM
    Permalink | Comments (1) | Post RSSRSS comment feed

    C# Replace single quotation with double quotation

    A_string.Replace("'", "\"")


    Categories: C#
    Posted by developer on Saturday, October 03, 2009 12:18 AM
    Permalink | Comments (3) | Post RSSRSS comment feed