Sign in
|
Join
|
Help
in
Current Tags
Technology
code for eternity !!! Blogs
(Entire Site)
code for eternity !!!
community website for .net freaks ;-)
Home
Blogs
This Blog
Home
Syndication
RSS
Atom
Comments RSS
Receive Email Updates
Recent Posts
LINQ ElementAt and ElementAtOrDefault
T-SQL Function to Get Int From Varchar
Developers are Born Brave
Coders versus Project Managers
LINQ Single and SingleOrDefault
Tags
.NET 3.5
AJAX
Architecture
ASP.NET
Bugs
C#
Code Better
Community Server
Extension Methods
Facebook
GoDaddy
Google
Humor
IIS
LINQ
Management
Mobile
Performance
Security
SharePoint
Silverlight
SQL Server
Tips And Tricks
VB.NET
Vista
Visual Studio
Windows Server
WinForms
WPF
WWF
Archives
August 2008
(1)
May 2008
(6)
April 2008
(6)
March 2008
(2)
February 2008
(2)
January 2008
(5)
December 2007
(6)
Technology
Browse by Tags
All Tags
»
ASP.NET
(
RSS
)
.NET 3.5
AJAX
Architecture
C#
Code Better
Extension Methods
Facebook
IIS
LINQ
Security
Silverlight
Tips And Tricks
VB.NET
Visual Studio
Windows Server
WinForms
WPF
WWF
AddItem Extension Method for BulletedList, CheckBoxList, DropDownList, ListBox, RadioButtonList
We would have to write the below code to add a new item (with value) to any of these 5 controls (BulletedList, CheckBoxList, DropDownList, ListBox, RadioButtonList) C#: bulletedList.Items.Add(new ListItem("text", "value")); checkBoxList...
Posted
May 09 2008, 04:03 PM
by
raj
with | with
5 comment(s)
Filed under:
Code Better
,
ASP.NET
,
.NET 3.5
,
Extension Methods
System.Data.DataSetExtensions Assembly Error in Visual Studio 2008 RTM
After upgrading from Visual Studio 2008 Beta 2 to Visual Studio 2008 RTM, I got the following error when I tried to build my ASP.NET 3.5 project which was initially coded using Visual Studio 2008 Beta 2: Could not load file or assembly 'System.Data...
Posted
Apr 05 2008, 02:27 PM
by
raj
with | with
3 comment(s)
Filed under:
ASP.NET
,
.NET 3.5
,
Visual Studio
Tip/Trick: Making Non Themeable Properties of ASP.NET Controls Themeable
If you have been using ASP.NET themes feature in your ASP.NET projects, you surely must have come across situations where you wished you could set certain properties of controls via skins. For example, in all my ASP.NET projects, I always want to set...
Posted
Mar 29 2008, 02:56 PM
by
raj
with | with
2 comment(s)
Filed under:
Code Better
,
ASP.NET
,
Tips And Tricks
Cool TrimText Extension Method for TextBox
Extension Methods are one of the most powerful features of .NET 3.5 and they can add a lot of flexibility to your code and help in cutting down your code size significantly if used wisely. I have been using a lot of Extension Methods in my code lately...
Posted
Mar 03 2008, 09:01 AM
by
raj
with | with
1 comment(s)
Filed under:
ASP.NET
,
WinForms
,
.NET 3.5
,
VB.NET
,
C#
,
Extension Methods
Creating Self Signed SSL Certificates on IIS 6.0 and Windows Server 2003
If you need to deploy and test your code in SSL environment on IIS 6.0 and Windows Server 2003, but you do not have a valid SSL certificate on your development / test server issued by a trusted third party Certificate Authority (since it costs money)...
Posted
Feb 15 2008, 09:48 AM
by
raj
with | with
18 comment(s)
Filed under:
ASP.NET
,
IIS
,
Windows Server
,
Security
Building a Web 2.0 Portal with ASP.NET 3.5
I recently purchased this great new book named Building a Web 2.0 Portal with ASP.NET 3.5 by Omar Al Zabir and I would highly recommend this book to any architect or developer who is interested in learning how to design and develop world class highly...
Posted
Feb 13 2008, 04:40 PM
by
raj
with | with
5 comment(s)
Filed under:
ASP.NET
,
LINQ
,
.NET 3.5
,
AJAX
,
WWF
Developing Facebook Applications using Facebook Developer Toolkit for .NET
You can now develop windows based or web based Facebook Applications using your favorite .NET language, be it C# or VB.NET. All you need is a Facebook account, Visual Studio Express and the Facebook Developer Toolkit for .NET. Information about the Facebook...
Posted
Dec 26 2007, 02:33 PM
by
raj
with | with
1 comment(s)
Filed under:
ASP.NET
,
WPF
,
WinForms
,
Facebook
,
LINQ
Handling ASP.NET Session Variables Efficiently
One of the most common mistakes ASP.NET developers make is while accessing session variables. Have a look at the code below: C#: // Writing to session variable Session["UserCountry"] = ddlUserCountry.SelectedValue; // Reading from session variable...
Posted
Dec 19 2007, 05:32 PM
by
raj
with | with
53 comment(s)
Filed under:
Code Better
,
ASP.NET
,
Architecture
Difference between Silverlight Version 1.0 and Silverlight Version 1.1
A lot of my friends who want to get started with Silverlight development keep asking me what's the difference between Silverlight 1.0 and Silverlight 1.1? Which version should they use? Which version supports what? The primary difference between the...
Posted
Dec 18 2007, 02:03 PM
by
raj
with | with
1 comment(s)
Filed under:
ASP.NET
,
Silverlight