home » blogs » Vinz » Pluralsight On-Demand Training library
  Rate This Blog Entry:  register  or  login

Author

Vinz Vinz (Member since: 4/15/2009 12:12:23 PM)
Working as a Web Developer at Savvysherpa Asia Inc. and specializing on ASP.NET technologies. I am an active forum member and a regular contributor at the official ASP.NET forum site and one of the Top Community member with All- Star recognition level.I voluntarily spent my extra time helping other geeks through forums, blogs and articles. I have been awarded as Microsoft MVP - ASP/ASP.NET for 2009 and again in 2010.

View Vinz 's profile

Comments (1)

raghav_khunger
5/17/2010 11:00:59 AM raghav_khunger said:

Yes Vinz, 

They are having good training videos.

by

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

Vinz's latest blog posts

  • GridView BoundField Column: Accessing TextBox Control on Edit Mode
    7/14/2010 3:46:51 PM
    If you are working with GridView BoundField Columns and wanted to access the TextBox control on row editing for whatever reasons (which means when you click on the Edit link) then below is an example ...
  • Display animated gif before Iframe content is loaded
    7/13/2010 12:46:52 PM
    If you are working with iframe in which the content takes time to load, you may want to display a simple loading indicator to the end users instead of letting the users see a blank screen in the page....
  • Introducing WebMatrix Beta
    7/9/2010 5:56:42 AM
    Microsoft has recently released the first beta version of WebMatrix . What is it? Taken from the WebMatrix official site : "WebMatrix is everything you need to build Web sites using Windows. It includ...
  • MaskEditExtender and ClearMaskOnLostFocus
    7/4/2010 11:40:56 AM
    I was playing around with ASPNET AJAX MaskEditExtender control and ASPNET Validation controls when I was working with a profile page and doing some input validations. Everything seems to be fine until...
  • Joined the 100,000 Recognition Points Club in the ASP.NET Forums
    5/17/2010 7:50:03 AM
    I am the fourth person who reached the 100,000 recognition points in the ASP.NET forums and I am really honored be one in the club. Feels great!
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...