Author: admin

  • Blog
  • Author: admin

Migrating to asp.net 2.0 videos

Microsoft asp.net team and and http://www.learn2asp.net/ has launched a new web cast series about migrating from other languages to asp.net 2.0. It’s contains following web casts; Migrating to asp.net 2.0 (2 web casts) Migrating from asp to asp.net 2.0 Migrating from jsp to asp.net 2.0 Migrating from coldfustion to asp.net 2.0( 2 web casts) Using

Assembly Neutral Interface in ASP.NET 5(vNext)

CodeProject Recently Microsoft has open sourced it’s entire ASP.NET next version stack on GitHub and I have been closely watching this for a quite a some time to understand how they have created architecture of it and how they organize everything in such a large stack. I have seen  [AssemblyNeutral] attribute in few of interfaces

Collecting Remote System Information With WMI + C#.NET

While developing a windows application we often need to develop application that will collect information about remote pc. I have found a great article which will use WMI classes in .net framework to get information about remote pc.here is the link for that article…. http://www.codeproject.com/cs/internet/remotesysinformation.asp?df=100&forumid=127088&exp=0&select=1498523

Custom Gradient Button with hover Effect C#.NET

Any one create a gradient button with this example. Which have hover effect class CustomButton:Button{#region Fieldsprivate Color _StartColor;private Color _EndColor;private Color _StartHoverColor;private Color _EndHoverColor;private bool bMouseHover;private Brush _paintBrush;private PointF _centerPoint;StringFormat _sf = new StringFormat();#endregion#region Propertiespublic Color StartColor{get{return _StartColor;}set{if (value == Color.Empty){_StartColor = Color.FromArgb(251,250,249);}else{_StartColor = value;}}}public Color StartHoverColor{get{return _StartHoverColor;}set{if (value == Color.Empty){_StartHoverColor =Color.White;}else{_StartHoverColor = value;}}}public Color