If you plan to use Themes in your ASP.NET website, you can set the active one by using two page’s properties: StyleSheetTheme and Theme. Read the rest of this entry »
StyleSheetTheme vs. Theme
JavaScript: Convert UTC to Local Time
- Author: admin
- Published: Sep 29th, 2012
- Category: javascript
Consider the following situation: you have some dates for feature events in you database, then you want to publish then in your website, but the user to be able to see these dates in his local time zone. Read the rest of this entry »
How to Use Akismet in ASP.NET or .NET Application
- Author: admin
- Published: Sep 26th, 2012
- Category: .NET Framework, ASP.NET
If you develop an asp.net website or other .net application and you want to use the Akismet spam protection service, here a quick solution for your issue: Read the rest of this entry »
Convert WebSite Project (WSP) to Web Application Project (WAP)
Recently, I had to convert an ASP.NET WebSite Project (WSP) to Web Application Project (WAP). Actually, it’s easy
Here are the necessary steps that you need to do: Read the rest of this entry »
The ObservableCollection class
- Author: admin
- Published: May 5th, 2012
- Category: .NET Framework
The ObservableCollection<T> class can be used in situations when you need to get information when some element is added or removed. It was defined for the Windows Presentation Foundation (WPF) to allow the UI to be notified when collection get changed. Read the rest of this entry »
The ISet Interface, HashSet, and SortedSet
- Author: admin
- Published: May 3rd, 2012
- Category: .NET Framework
The ISet<T> is new in .NET Framework 4. The term ‘set’ is used to mark a collection which includes only distinct elements. Read the rest of this entry »