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

amconline Subscribe to this feed
amconline
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories submitted by friends of amconline
16
kicks
published 16 hours, 11 minutes ago, submitted by faisal 1 day, 5 hours ago

windowsclient.net — I was trying to create Vista style Login screen using Silverlight. I've seen couple of excellent custom Vista style UI designed in WPF by the known WPF gurus. Seeing their example I thought It's also possible to try something Vista style in Silverlight. Since Silverlight has many things common with WPF. So I started to get my feet wet to create a Vista style Login Screen using Silverlight 2 Beta 2. read more...

Add a comment 1 comment | category: | Views: 228
tags: | tag it

3
kicks
submitted by sonukapoor 12 days, 16 hours ago

dotnetslackers.com — Xun Ding writes a summary about the Ajax Data Controls. read more...

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

2
kicks
submitted by mehfuzh 13 days, 9 hours ago

weblogs.asp.net — We are making a sample application , demo or startup kit or a toolkit with test project that requires some sql script. We generally ship in a readme.txt that says it all. But hey, how about having the script under automated process , like if my sql server and VS 2008 is in place, with the click of Ctrl + Shift + B everything gets ready. Here, we will do just right that. ... read more...

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

3
kicks
submitted by mehfuzh 16 days, 21 hours ago

weblogs.asp.net — Its been quite a while since I made any release of the toolkit. I basically, get into user requests, used it myself in LinqToFlickr project and came up with some new features and enhancements. In my last post, I already said update comment and photo feature in LinqToFlickr (Athena) , where the update tracking is actually comes from this toolkit. Book book = (from b in context where b.Id == 1 select b).Single(); ... read more...

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

1
kicks
submitted by mehfuzh 25 days, 20 hours ago

weblogs.asp.net — Last week, I released a new version of LINQ.flickr, which I named as Athena from release 1.4. It covers few features from flickr service, also now I have updated it with the latest LINQExtender (pre release version) containing updated Object Tracking Service (OTS) that will enable it to update photos and comments as if like LINQ to SQL. read more...

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

2
kicks
submitted by mehfuzh 30 days, 10 hours ago

weblogs.asp.net — There are few things to know , when getting photos from your stream , adding comments and overall doing adding and deletion of your photos. As with flickr you can take a look at this url => http://www.flickr.com/services/api/auth.spec.html for authentication spec to learn more. But with Athena (formerly known as LINQ.Flickr) it's pretty easy to get things going. Last week, I made an update to the FlickrXplorer (The MVC starter project you don't to want miss :-)) project that now enables you to add comments for photos. There is a one click login that will take you to flickr, ask you once for the permission to grant the app for data access and finally will take back you the place from where you were left off. .... read more...

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

4
kicks
submitted by mehfuzh 1 month, 21 days ago

weblogs.asp.net — When you are planning to host your asp.net MVC application under IIS7 integrated mode environment. There are few easy tweaks that can make your application or starter kit work right out of the box but also can save a lot of your time finding things out. You might see a Http 404 page if default document is not configured properly. The one way of getting this around by using the following .. read more...

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

1
kicks
submitted by mehfuzh 1 month, 29 days ago

weblogs.asp.net — This is the first of posts that I am making to show out the things you can do with ASP.NET MVC, moreover what I have done while building a FlickrXplorer. I am bit lazy to write one article for it, so I thought rather to start it here. In this post, I will show how you can implement a master-detail application that invokes MVC controller to process its data and uses Ajax to do it in a non postback manner. .. read more...

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

3
kicks
submitted by sonukapoor 2 months ago

dotnetslackers.com — Submit some feedback about the AjaxDataControls for the next release. read more...

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

3
kicks
submitted by mehfuzh 2 months, 4 days ago

blogs.telerik.com — Are you a Telerik fan? If so, rest assured that we are coming up with new ways for you to stay connected and up-to-date on the latest and greatest news from the Telerik team. And if social networking sites, community forums, and blogs aren't enough, we've got a new treat for you today. I'm proud to announce our presence on Twitter! read more...

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

4
kicks
submitted by mehfuzh 2 months, 9 days ago

blogs.telerik.com — Today is D-Day ("Download Day") for the much-anticipated version 3 of Mozilla's popular web browsing client, Firefox. In an effort to create more buzz around the launch, Mozilla has requested that users help them attempt a new Guinness World Record for most downloads in a 24-hour period by downloading the new Firefox release today. Over 1.7 million people from around the world pledged to download the new client today. read more...

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

1
kicks
submitted by mehfuzh 2 months, 10 days ago

weblogs.asp.net — In my previous post, I have said that using LINQ query instead of SortedDictionary not only could be useful , elegant but also less processor intensive. In this post, I will show you a real comparison between .... read more...

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

3
kicks
submitted by mehfuzh 2 months, 10 days ago

blogs.telerik.com — Hi everyone. I'm Jordan Dimitrov from the WPF team. I'm planing to post about .Net, first with few post about WPF. My first post is about resources and themes. read more...

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

2
kicks
submitted by mehfuzh 2 months, 10 days ago

blogs.telerik.com — As you are probably aware resolution and device independence is one of the fundamental design goals of WPF. In order to achieve the desired effect the framework does not work directly with physical (device-dependent) pixels but abstracts this notion into device-independent measuring units like inches read more...

tags: | tag it

1
kicks
submitted by mehfuzh 2 months, 11 days ago

weblogs.asp.net — With LINQ.Flickr it is quite necessary to get signature on parameters in order to do authenticated flickr photo get. As with the signature, it has sorted by parameter then to be hashed by MD5. Previously, I used to use SortedDictionary dictionary to do so, but thinking a little bit I learned that we actually don't need SortedDictionary anymore...... read more...

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

2
kicks
submitted by sonukapoor 2 months, 11 days ago

dotnetslackers.com — A small how to get started with the AjaxDataControls. read more...

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

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge