DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

Stories recently tagged with '.Net' Subscribe to this feed
1
kicks
submitted by CharlesBronson 6 days ago

microsoft.com — The .NET Framework 3.5 Service Pack 1 delivers more controls, a streamlined setup, improved start-up performance, and powerful latest graphics features for client development and rich data scaffolding, and other improvements for Web development. read more...

Add a comment add a comment | category: | Views: 12
tags: | tag it

1
kicks
submitted by xtremebiz xtremebiz 6 days, 18 hours ago

codeforeternity.com — We can use the ElementAt extension method of LINQ to return the element at a specified index (zero based) in a sequence. However the ElementAt extension method would throw the System.ArguementOutOfRangeException when the specified index is a negative value or not less than the size of the sequence. In such a scenario, we can use the ElementAtOrDefault extenion method which would return the default value of a type instead of throwing the System.ArguementOutOfRangeException. Read this article for code example (both in C# and VB.NET) with comments read more...

Add a comment add a comment | category: | Views: 4
tags: , , , , | tag it

12
kicks
published 7 days, 12 hours ago, submitted by rakee rakee 8 days, 6 hours ago

rakeshravuri.blogspot.com — Pixelshader code for Photshop style layer blending in WPF. read more...

tags: , , , , | tag it

2
kicks
submitted by dcarr dcarr 8 days, 8 hours ago

blog.domaindotnet.com — Undocumented Linq! .NET 3.5 SP1 Gold Forgot to Mention these Critical Changes that might Break your Code BREAKING CHANGE: Cast<T> Behavior Also, a new implementation recognizes queries that apply Where and/or Select to arrays or List<T> and fold pipelines of multiple enumerable objects into single specialized enumerables. According to Dinesh Kulkari at Microsoft this enhancement: "….produces substantial improvement in base overhead of common LINQ to Objects queries (at times 30+%)." read more...

Add a comment 1 comment | category: | Views: 20
tags: , , , , | tag it

19
kicks
published 14 days ago, submitted by Sanjeevana 14 days, 4 hours ago

weblogs.asp.net — This is part 2 of my series for ASP.NET AJAX and JQuery comparison. You can read part 1 here. In my last 2 articles (Dynamically create ASP.NET user control using ASP.NET Ajax and Web Service and Dynamically create ASP.NET user control using JQuery and JSON enabled Ajax Web Service), I explained how to access JSON data from ASP.NET AJAX script service using ASP.NET AJAX client side framework and JQuery. In this post I will compare response/ request for these two implementations. read more...

Add a comment add a comment | category: | Views: 272
tags: , , , , | tag it

4
kicks
submitted by Yura Yura 15 days, 23 hours ago

weblogs.asp.net — You can use the workaround of converting a VS 2008 website to a web app, even though the option exists only for web applications. read more...

Add a comment add a comment | category: | Views: 10
tags: , , , | tag it

18
kicks
published 19 days, 11 hours ago, submitted by alashcraft 19 days, 16 hours ago

nayyeri.net — Link blogs are one of the common types of blogs that are actually a list of links to other resources in a specific field. At first glance, it seems easy to collect some links and present them in a blog post and somehow this statement is right but there are some people who don’t take it easy and put a good effort to present great link blogs. read more...

Add a comment add a comment | category: | Views: 515
tags: , , , , | tag it

16
kicks
published 21 days, 21 hours ago, submitted by Sanjeevana 22 days, 4 hours ago

weblogs.asp.net — Few thing you need to consider when you are accesing ASP.NET webservice through JQuery. * Request verb Type * Content- length with IIS6+ * Default contentType * JSON object formatting * Maximum length exceed exception I am explaining these issues and workaround to make JQuery work fine with ASP.NET Ajax enabled web service. read more...

Add a comment add a comment | category: | Views: 186
tags: , , , , | tag it

15
kicks
published 25 days, 14 hours ago, submitted by rakee rakee 26 days, 7 hours ago

rakeshravuri.blogspot.com — Reflection effect using Pixel Shader in WPF 3.5 Sp1 read more...

tags: , , , , | tag it

4
kicks
submitted by djsolid 27 days, 20 hours ago

weblogs.asp.net — Yesterday was released the first preview of ASP.NET 4.0. Lot's of cool stuff come with this release and with this article i will try to demonstrate the use of templates. The example is available for download Let's start... read more...

Add a comment add a comment | category: | Views: 21
tags: , , , , | tag it

16
kicks
published 28 days, 18 hours ago, submitted by Sanjeevana 29 days, 3 hours ago

weblogs.asp.net — To make web UI dynamic and more responsive to the various situations and modes, several techniques are used by the developers like making irrelevant controls invisible, disabling unused controls. This technique makes you page complex and heavy in size. Dynamic user control is another story. With dynamic control creation you will get the unmatched flexibility and innovation with robustness. Using this technique you can add any usercontrol to any page as per demand without postback or update panel. read more...

Add a comment add a comment | category: | Views: 220
tags: , , , , | tag it

7
kicks
published 1 month, 2 days ago, submitted by _UE_ 1 month, 3 days ago

boxedapp.com — If you use a DLL written in Managed C++, you should a few DLLs from the Microsoft Visual C++ Redistributable package installed. There are no usual ways to link these libraries statically (due to C++ / CLI restrictions). But there a way to include these DLLs into your application, see how in this article. read more...

Add a comment 4 comments | category: | Views: 49
tags: , , | tag it

3
kicks
submitted by .NetKicks 1 month, 7 days ago

cjcraft.com — The author created 30 applications (GPS compass, Rotate, ...) for windows mobile during June. read more...

Add a comment add a comment | category: | Views: 8
tags: , , , | tag it

1
kicks
submitted by hockman 1 month, 9 days ago

hockblogs.net — Hi there, I'm currently developing a Winforms project where we want to be able to sort, filter, bind business objects to datagrid views. And I've found a .NET Library that just does everything I need, instead of using dataviews it just binds the business object to the datagridview. The BindingListView .NET library provides a type-safe, sortable, filterable, data-bindable view of one or more lists of objects. It is the business objects equivalent of using a DataView on a DataTable in ADO.NET. If you have a list of objects to display on a Windows Forms UI (e.g. in a DataGridView) and want to allow your user to sort and filter, then this is the library to use! read more...

Add a comment add a comment | category: | Views: 17
tags: , | tag it

3
kicks
submitted by rprouse rprouse 1 month, 10 days ago

alteridem.net — One thing that I find tiresome when using the various Model/View patterns is the constant copying of data between the model and the view. This is the first post in a series on a possible easier way to do this. In this post I write a method that copies the data from one interface to another based on the names and types of the properties. Over the next few posts, I will extend the code to use generics and extension methods. read more...

Add a comment add a comment | category: | Views: 18
tags: , , , , | tag it

1
kicks
submitted by tom24 1 month, 11 days ago

blogs.msdn.com — Some of the differences between Win32 and .NET debugging read more...

Add a comment add a comment | category: | Views: 7
tags: , , , | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge