home » blogs » raghav_khunger » How to remove link line from hyperlink
  Rate This Blog Entry:  register  or  login

Author

raghav_khunger raghav_khunger (Member since: 4/19/2009 1:46:52 AM)

View raghav_khunger 's profile

Comments (no comments yet)

Leave a comment


 
Type the characters:
 *
 
   

Join CodeAsp.Net for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address:

Blogs RSS Feed

raghav_khunger's latest blog posts

  • Javascript: Copy methods from one class to other
    7/25/2010 5:56:49 PM
    Few days back a person was asking on forums on how to copy the methods from one class to other in Javascript. Yes, it sounds interesting. You can make use of object oriented techniques in Javascript t...
  • C#: Find the maximum key from a dictionary
    7/25/2010 2:43:42 PM
    Yesterday a person asked on the forums on how to find the maximum key from a dictionary. He needs to perform some logic after finding the maximum key so I gave him the solution to use Max of LINQ. Bel...
  • c#:Check for file or directory
    7/16/2010 2:59:26 AM
    Today a person asked on the forums on how to check or determine whether the physical path he is having is a directory or a file. I told him the solution to go for FileAttributes.Directory property. If...
  • c#: How to generate n digit unique random numbers
    7/8/2010 7:34:52 PM
    In this blog I will explain how to generate n digit unique random numbers in c#. I have used "HashSet" collection and yield keywords in my below example which will help us in to group random numbers. ...
  • How to add bookmarks straight from your browser on delicious
    7/5/2010 3:50:26 AM
    I find Delicious website a good tool to create, manage and search your bookmarks. But everytime going to delicious site and then saving a particular link as a bookmark is kind of pain. I need a tool s...
Blogs RSS Feed

Latest community blog posts

  • C#: Find the maximum key from a dictionary
    7/25/2010 2:43:42 PM  by raghav_khunger
    Yesterday a person asked on the forums on how to find the maximum key from a dictionary. He needs to perform some logic after finding the maximum key so I gave him the solution to use Max of LINQ. Bel...
  • Literal control in ASP.NET
    7/21/2010 9:16:37 PM  by mohit
    In this blog I will explain Literal control in ASP.NET. The Literal control used to display static text on a web page. Literal control is not rendered as a <span> tag like label control. The Lit...
  • Calculate First and Last Day of Month
    7/21/2010 3:43:42 PM  by hajan
    This is pretty simple, but a bit tricky for those that haven't tried it yet, so I would like to document it here :). You may be in need to calculate the first or last day of the month in your ASP.NET ...
  • Checking the existence of dictionary keys
    7/20/2010 3:31:31 PM  by hajan
    Dictionary is an interesting mechanism which provides us very good way to associate keys and values on a simple manner. Key/Values can be of any type. I won't get into explaining what is (or what is n...