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

Kick Spy!, Kick Zeitgeist and Kick Widgets

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

Stories submitted by friends of JGaroutte
4
kicks
submitted by kayos kayos 23 days, 12 hours ago

blog.reamped.net — So this is what it has come to anymore. Everyone is all about server side paging via SQL Server. As well they should be! It is so much faster and more efficient than having ADO or ADO.NET bring back a ton of records and then chop it to page it. However, there has always been some problems when trying to accomplish this task, especially using a SQL database that is pre 2005. read more...

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

4
kicks
submitted by kayos kayos 1 month, 6 days ago

blog.reamped.net — If you have read any of my previous posts on site wide user notification patterns and controls, then you may know where this is going. I have compiled a server control to bring this functionality to the fingertips of my fellow ASP.NET developers! read more...

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

4
kicks
submitted by kayos kayos 2 months, 2 days ago

jeffgaroutte.com — Asp.net has a wonderful system built in for handling user accounts and roles. The administration interface is encapsulated in a separate web site that can be accessed from within Visual Studio but it is difficult to integrate into the site. This often leads to building a new user administration area in each site. The problem I have with this is going into the data store and deleting the incomplete test data and not having "known good" data for testing. read more...

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

2
kicks
submitted by kayos kayos 2 months, 29 days ago

blog.reamped.net — If you look up accessibility levels on the MSDN web site, it will tell you that the accessibility of the private access modifier is limited to the containing type. I ran into an instance that showed me the direct meaning of this statement. read more...

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

5
kicks
submitted by kayos kayos 3 months, 14 days ago

blog.reamped.net — A little while back I came across a great post on how to use JQuery to do more efficient client side paging by Dave Ward. The sample shows you how to use JQuery to do Ajax callbacks for client side paging using a grid template. After downloading the demo and parsing through it all, I found a lot of things I really liked and even came across a little gotchya with the way ASP.NET serializes dates in JSON. read more...

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

2
kicks
submitted by kayos kayos 4 months, 9 days ago

gridviewguy.com — Matt Berseth wrote a very interesting article on “Bulk Inserting Data Using the ListView Control". The idea is to give the user an Excel like interface where they can edit the rows with custom data and finally click the update button to persist the data in the database. Matt’s solution was great but lacks a very important detail. There was no way to know what rows were changed by the user. Matt took the road to update all the rows whether they were changed or not. In this article we are going to take a look at an alternative method of updating only the changed rows. read more...

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

2
kicks
submitted by kayos kayos 4 months, 11 days ago

blog.reamped.net — In a recent situation I was trying to pull some aggregates out of a DataTable using LINQ. I needed to get the rows of the DataTable with a Distinct clause, but my aggregates would be on other columns of the row. read more...

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

3
kicks
submitted by kayos kayos 7 months, 3 days ago

blog.reamped.net — A short way to display and consume strongly typed user controls. read more...

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

18
kicks
published 8 months ago, submitted by kayos kayos 8 months ago

blog.reamped.net — Do you use database projects in Visual Studio? If not, then now is a good time to start. It is the best way I have found to source control my databases without actually sticking the database file itself in the repository. read more...

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

28
kicks
published 8 months, 13 days ago, submitted by kayos kayos 8 months, 14 days ago

blog.reamped.net — So after the installation of VisualSVN 1.4, I don't think I'll ever look back. Finally a version of Visual Studio source control integration to make me leave the realms of Visual Source Safe forever. read more...

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

4
kicks
submitted by kayos kayos 8 months, 16 days ago

blog.reamped.net — If you haven't tried using the event model in .NET you don't know what you're missing. If this is the case, then I'm glad you're here. Events are a very nice way to add flexibility to your projects. read more...

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

16
kicks
published 8 months, 21 days ago, submitted by kayos kayos 8 months, 23 days ago

blog.reamped.net — Ok, if you're anything like me you absolutely gag when you see the rendered content of the ASP.NET head tag. read more...

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

1
kicks
submitted by kayos kayos 9 months, 10 days ago

blog.reamped.net — Ever wonder how to call an insert or update command on multiple data bound DetailsView controls? Wonder no longer! read more...

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

3
kicks
submitted by kayos kayos 9 months, 14 days ago

blog.reamped.net — An article about objects with child objects and displaying them with the ObjectDataSource. read more...

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

1
kicks
submitted by kayos kayos 9 months, 25 days ago

blog.reamped.net — Lately, I have been having to deal with finding ASP.NET Ajax when creating server controls. It is actually quite simple to do, and I think that if you are going to be coding server controls for ASP.NET you should definately know how to do it. So in this post, we will go through embedding a javascript file into your assembly and then registering it to the page. Then I will show you how to find out if ASP.NET Ajax is loaded during the script registration and also how to find out if ASP.NET Ajax is loaded in the javascript file itself. Let's face it, you may not want your control to rely on ASP.NET Ajax, but you may want to consider reaping the benefits of it if it is loaded. read more...

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

3
kicks
submitted by kayos kayos 9 months, 28 days ago

blog.reamped.net — Some of you may have read my previous post Creating a Simple Site Wide User Notification Pattern. Upon a revision round of thinking, I thought it may be better to actually have a server control. This would offer some significant advantages, the biggest one being that we could drop the BaseMasterPage. Having the control be a strongly typed server control, we could find it on the page by it's type. We would also only have one place to go to maintain the code, rather than digging through a user controls directory along with the App_Code directory. read more...

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

 

Sponsored Link: www.carlist.ie

Search:

Ads by The Lounge