home » blogs » vivek_iit » Row associated with the currency manager's position cannot be made invisible
  Rate This Blog Entry:  register  or  login

Author

vivek_iit vivek_iit (Member since: 11/27/2008 11:54:25 AM)
I am one of the administrators at CodeAsp.Net and I love programming, architecting solutions, code reviews, teaching and writing about ASP.NET.

View vivek_iit 's profile

Comments (1)

vikas
4/17/2009 11:30:01 PM Anonymous said:
thank you for,put your answer here
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

vivek_iit's latest blog posts

  • ASP.NET MVC vs Web forms
    7/9/2010 12:30:40 PM
    With ASP.NET MVC 3 to be out soon, there are still many developers confused on whether to use MVC or the standard Web Forms UI while building their own custom ASP.NET web applications. I know this has...
  • Convert Int to Enum in C#
    5/13/2010 11:47:19 AM
    Here is some quick code to convert an integer to an enum in C#: Assume we have an enum UserInfoDisplayField Method 1: UserInfoDisplayField myEnum=(UserInfoDisplayFieldType)Enum.ToObject(typeof(UserInf...
  • Can I run ASP.NET 2.0 and 3.5 code on the same website?
    4/27/2010 9:46:47 AM
    Run ASP.NET 2.0 and 3.5 applications on the same server Yes, you can run both together, infact the 3.5 applications use the 2.0 compiler. Why? Because version 3.5 is just a wrapper around 2.0 with som...
  • Call C# code within ASPX page
    4/26/2010 9:26:31 AM
    How to call C# code within ASPX page Many times we might need to call the C# or VB.NET code from within the ASPX page instead of using a code-behind file. Here is a quick code snippet to do the same: ...
  • McAfee problem with Windows XP
    4/22/2010 5:09:50 AM
    Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Microsoft has been made aware of an issue with a McAfee DAT file update - released Wednesday, April 21, 2010 - that has been c...
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...