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

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

Stories submitted by friends of magz
2
kicks
submitted by Vort3X 1 month, 24 days ago

connect.microsoft.com — The RTM version of the product will not support intellisense for 2000 or 2005 instances. While I understand the exclusion of SQL 2000 as it is no longer a supported version I believe SQL 2005 should be included. Many development shops will have versions of 2005 and 2008 running. read more...

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

3
kicks
submitted by Vort3X 1 month, 26 days ago

objectreference.net — ASP.Net ListBox control allows two types of selection mode: single and multiple. Working in single selection mode is similar to working with DropDown list control. Use ListBox.SelectedValue to get the value that was selected by a user. In order to set a selection SelectedIndex property can be used or Selected property of a particular item should be set to true. read more...

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

17
kicks
published 2 months, 8 days ago, submitted by Vort3X 2 months, 9 days ago

objectreference.net — Recently I’ve been having problems as the site has gotten more popular I’ve had comments and even posts disappearing randomly, sometimes re-appearing you might have experienced this yourself either on my site or in your own so after divulging into the code to see what was happening found something I thought was shocking. When you add a comment, or Rating, Approving and Remove Comments this is what BlogEngine DbBlogProvider actually does... read more...

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

40
kicks
published 2 months, 22 days ago, submitted by Vort3X 2 months, 22 days ago

objectreference.net — Well, JavaScript developers, specifically. In order to aid in development of my own websites, I enabled JavaScript debugging in Internet Explorer a few weeks back. To my horror, I have quickly experienced what seems to be complete disregard for serving syntactically correct JavaScript on the open internet. No, I’m not just talking about a few niche websites, run by amateur programmers. I am talking about industry-leading nerd-friendly powerhouse websites that should know better. read more...

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

9
kicks
published 3 months, 20 days ago, submitted by Vort3X 3 months, 21 days ago

objectreference.net — Imagine you have a list of some items and checkboxes next to each item providing the ability for a user to make multiple choices and submit a result in one go. Weather you are implementing a news groups subscription, user survey or online products catalogue - the code behind is the same: we bind some object list to a data control like Repeater, add a checkbox to every item, set checkbox value to item ID. read more...

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

14
kicks
published 4 months, 4 days ago, submitted by Vort3X 4 months, 4 days ago

objectreference.net — We use enums quite extensively in our application as they are a great for representing integral values in a strongly typed way using symbolic names. The enum names are not very friendly to the user and I recently read a some good articles which tried to solve this problem. However, I think i've found a better solution to this problem using extension methods. read more...

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

1
kicks
submitted by Vort3X 4 months, 9 days ago

objectreference.net — This article is intended for amateur programmers, and/or people new to Object Oriented programming. “Object reference not set to an instance of an object” is probably the most common run-time exception message spat-out by the .Net framework, and most programmers will probably encounter this more often than any other framework exception type. read more...

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

13
kicks
published 4 months, 14 days ago, submitted by Vort3X 4 months, 15 days ago

objectreference.net — As a .NET programmer most of my time is spent coding in C# and I try to avoid writing SQL where possible. Recently I had to write an insert stored procedure and needed to return the ID of the row I was inserting. While writing my usual bad SQL I came across a fascinating function I’ve never used before, SCOPE_IDENTITY(). read more...

Add a comment 7 comments | category: | Views: 276
tags: | tag it

4
kicks
submitted by Vort3X 4 months, 29 days ago

objectreference.net — LinqToSql is amazing! I've been working with it for the past week and loving every moment. However i've noticed somethig weird, it lies to me about the SQL it's generating. Here is my example... read more...

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

3
kicks
submitted by Vort3X 5 months, 1 day ago

objectreference.net — I have created IIS7 asset handler for my application which deals with images and stylesheets by serving them from a CMS database. For some reason the new IIS7 handlers section doesn't allow multiple paths for a handler, so you have to map each path like so... read more...

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

30
kicks
published 5 months, 7 days ago, submitted by Vort3X 5 months, 7 days ago

objectreference.net — You could argue there are too many operators in C# as it is; however, I feel having an acute knowledge of the available operators is like knowing CTRL + B will bold the selected text in most word processing software. To put it simply, it hurts no-one, whilst providing shortcuts to advanced users... read more...

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

36
kicks
published 5 months, 8 days ago, submitted by Vort3X 5 months, 9 days ago

objectreference.net — I develop for a large, high-availability website, with hundreds of thousands of daily users. As such, we need to cache a lot of data in our web-server memory (which is cheap) to save numerous hits to our main database cluster (which is very expensive). I would imagine the desire to improve performance by saving on database hits is common across many web applications – and caching frequently used data is often seen as one of the best ways to solve this problem. read more...

Add a comment 6 comments | category: | Views: 53
tags: | tag it

4
kicks
submitted by Vort3X 5 months, 12 days ago

objectreference.net — I keep forgetting how to do it and end up spending ages searching for it, so here is a very usefull extension method that allows you to select an item from a DropDownList using the text or value of the item without needing to know the index of the item. read more...

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

23
kicks
published 5 months, 13 days ago, submitted by Vort3X 5 months, 15 days ago

objectreference.net — Being a C# developer by trade, I naturally spend a lot of my working life programming computers. Whilst I by no-means profess to be a “guru” of any kind, I do notice that there is one aspect of software development that is often neglected from discussion, and most programmers will hopefully agree with me as I explain. read more...

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

4
kicks
submitted by Vort3X 5 months, 15 days ago

objectreference.net — TryParse method is very helpful if you need to convert string representation of a value to a value itself. TryParse is better than Parse method because it doesn’t throw any exceptions and just returns a Boolean value to indicate weather the parsing was successful. Surprisingly there is no TryParse method available to use for Enum and this is where extension method can be extremely useful. read more...

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

9
kicks
submitted by Vort3X 6 months, 3 days ago

objectreference.net — Many times you find yourself having to convert the type of an object to another. The ToString() method is probably one of the most usefull methods, it's great for easy conversion of objects to string, but what if you want to do it the other way round. read more...

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

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge