Loading ...

ASP.NET Community

Who is online?  0 guests and 0 members
CodeAsp.Net is the premiere ASP.NET developer community,
offering valuable and powerful ASP.NET articles, blogs, forums, jobs, events, and know-how.

Featured Articles

  • ASP.NET Page Lifecycle 3/11/2009 - I have tried to explain relevant events in the Page lifecycle and their importance with some gotchas. I will keep updating this article with more tips and tricks, besides readers are welcome to point out mistakes and suggest corrections and give feedback! An important thing to remember here is that the entire lifecycle is repeated on every reque

  • Design Pattern: State design pattern 12/31/2011 - The State pattern allows an object to change its behaviour when its internal state changes. This pattern comes under Behavioral Patterns section. This pattern is used to represent the state of an object. By "internal state changes" it means, the object will appear to change its type at runtime

  • JavaScript Design Pattern: Publisher Subscriber Pattern 9/22/2011 - This pattern enables to build agile software architecture by decoupling items/objects which produce information and items/objects which consume it. The publisher/subscriber pattern is a software design pattern in which an object, called the subject, maintains a list of its observers, and notifies them automatically of any state changes. It is mainly used to broadcast information to multiple subscribers/observers. The essence of this pattern is to allow one object (the observer, publisher) to wat...

  • How to use log4net in ASP.NET 9/10/2011 - The Apache log4net library is a means to help the programmers output assertions or logs to a variety of output targets. It is very helpful in the cases where you are facing problems with an application and want to log statements to locate the problem. The statements are logged with the help og log4Net during the runtime of the program.

  • Understanding CSS Overflow Property 7/21/2011 - Recently one of my developers asked me regarding the overflow property of CSS. He was having some confusion regarding various options (visible, hidden, scroll and auto) provided in overflow property. Therefore I decided to write an article on same which will put some light on the overflow property of CSS. While working with HTML pages we all have boxes on it. By boxes I mean to say square or rectangular containers on the page. These containers have some height and width. If the height and width ...

More Featured Articles

Blogs RSS Feed

Latest community blog posts

  • Well this is really not my last post but I will not be blogging anymore here to avoid cross posting of contents. Instead you can visit my official blog at: Vinz' Blog Note: Stop blogging here doesn't ...
  • We were stuck with a weird issue. Our ASP.NET web app was crashing for some reason and the event log only displayed Stackoverflow exception. We want to narrow down the reason for the crash and since s...
  • This year again, Macedonian .NET User Group is organizing the biggest event in balkans... CODE CAMP 2011 Event will be held at 26th of November at FON University, Skopje, Macedonia. There are 24 speak...
  • In this blog I will show how to cast an int to enum, enum to int and string to enum. Let's make a sample enum: MyEnum.cs namespace Sample.Console { public enum MyEnum { Item1 = 1, Item2 = 2, Item3 = 3...
  • Yeterday I had a requirement where I needed to find the end of day in datetime. I decided to make extension on datetime to achieve it. Below is the sample code: DateTimeExtension.cs: #region Using Dir...
  • In this blog I will show how to get selected values of checkboxlist in ASP.NET. The selected value can be get by applying foreach iterator on checkboxlist items and then we can find the selected items...
  • Sometimes it is needed to add some text with linebreaks manually in textarea. It can be done by adding slash r and slash n (\r\n). Below is the sample code to do the same. <html xmlns="http://www.w...
  • Today I got this weird error in one of our projects in Visual Studio while getting latest from my Git repository: Files has invalid values The solution would give this error on "clean" or rebuild. Aft...
  • What is State Management? State management is the process by which you maintain state and page information over multiple requests for the same or different pages. ASP.NET includes several options that...

What's New

 

Quick Vote

What kind of email newsletter would you prefer to receive from CodeAsp.Net?

   

New People