|
|
generalPanic
Stories submitted by friends of generalPanic
|
|
submitted by
kayos
8 days, 11 hours 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
|
category: AJAX | Views: 6
|
|
tags:
GridView, ASP.NET, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
10 days, 13 hours 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
|
category: Linq | Views: 22
|
|
tags:
C#, LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 30 days ago, submitted by
kayos
3 months, 30 days 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
|
category: Database | Views: 27
|
|
tags:
SQL, VisualStudio, Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 12 days ago, submitted by
kayos
4 months, 13 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...
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
4 months, 15 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
|
category: ASP.NET | Views: 1
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 20 days ago, submitted by
kayos
4 months, 22 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
|
category: ASP.NET | Views: 7
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
5 months, 9 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
|
category: ASP.NET | Views: 0
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
5 months, 24 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
|
category: AJAX | Views: 0
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
5 months, 27 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
|
category: ASP.NET | Views: 0
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
6 months, 1 day ago
blog.reamped.net — Have you ever worked on a project that had a ton of Javascript in it? Not only that, but let me add that the project also made no good use of a Javascript framework. A lot of times when working in a project rich in Javascript, I find functions just defined all over the place without any rhyme or reason. Sometimes it is hard to judge if you are re-defining a function or not. This can get quite hairy, especially without the use of a tool that supports Javascript intellisense such as Visual Studio 2008. If you have been through these pains much as I have, then here is your saving grace. read more...
add a comment
|
category: Other | Views: 1
|
|
tags:
JavaScript | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 1 day ago, submitted by
kayos
6 months, 2 days ago
blog.reamped.net — A friend of mine was showing me about some common interfaces and some good use cases for them the other day. A discussion arose of how to accurately create a deep copy of an object and the best way to go about it. Shortly after that discussion we got into the Sort() method and how to dictate how that method will sort your objects. This is when he spilled into telling me all about these common interfaces. read more...
1 comment
|
category: C# | Views: 9
|
|
tags:
ICloneable, IComparable, C#, Interfaces | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 9 days ago, submitted by
kayos
6 months, 10 days ago
blog.reamped.net — When creating websites, it seems that one problem I always run into is how to gracefully notify the user of errors or display messages to them. In most of my sites I use master pages, so I thought it would be pretty sweet to integrate a messaging pattern into my master pages. read more...
add a comment
|
category: ASP.NET | Views: 1
|
|
tags:
Shit, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
6 months, 12 days ago
blog.reamped.net — So in the first part of this series we made some DataObjects and used attributing from the System.Data.Linq.Mapping namespace to make our DataObjects LINQ visible. Then in the second part of this series we made LINQ aware of our child DataObjects along with created the actual data store and a custom DataContext. read more...
add a comment
|
category: Linq | Views: 0
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
kayos
6 months, 15 days ago
blog.reamped.net — This is the second of a multi-part series on how to implement LINQ using custom entity classes in a ground up project or an add in to your existing object model scenario. read more...
add a comment
|
category: Linq | Views: 1
|
|
tags:
SQL, LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|