Blog Directory » Computer Blogs » Programming » Gunnar Peipman's ASP.NET blog Details


   

Gunnar Peipman's ASP.NET blog Blog Details

weblogs.asp.net thumbnail - Bloggapedia.com - Blog Directory

Website data:
(Actual information extracted from website)

Meta title:
Website needs page title

Meta description:
Website needs meta description
This listing is not rated yet.   Rate it!  |  Report it!

Gunnar Peipman's ASP.NET blog
http://weblogs.asp.net/gunnarpeipman/

On ASP.NET, C#, WCF, WF, SharePoint.

Category:
Blog Directory » Computer Blogs » Programming

Date added:
2008-01-13 16:28:14

Alexa traffic rank:
1,657

Site average load time:
1.703 Second(s)
Fast
Faster than 66% of websites

Site language:
EN

Site encoding:
US-ASCII


Gunnar Peipman's ASP.NET blog Latest Posts

70-542 - Done!
Couple of days ago I had 70-542 Microsoft Office SharePoint Server 2007 - Application Development exam. It wasn't one of easiest exams I have ever had but now it is done and I am certified SharePoint developer. :) 70-542 covers mostly MOSS2007 Standard and Enterprise features and there are not... Read more...
Published 10 hours ago

Code Complete 2
Code Complete 2 is very good and must-be book by Steve McConnell for all developers. The book covers many aspcets of coding and gives very good advices about how to organize and write your code, how to comment and document it and how to write code without ruining yourself. Although I have been... Read more...
Published 3 weeks ago

Interface for Processes
I had to write one data import/export utility that moved data from one database to another. Once I was finished the first round of coding I found one thing that needed refactoring - the import/export process wasn't generalized. It was part of importer/exporter utility main class (it was console... Read more...
Published 3 weeks ago

Don't Make Me Think
Don't Make Me Think by Steve Krug is the definitive guide to user friendly web pages. This book doesn't tell you about how to make HTML pages or how to design them. This book tells you what to keep in mind when dealing with web pages and how to make your web pages user friendly. The book is... Read more...
Published 3 weeks ago

GridView and Invalid CurrentPageIndex Value Exception - .Net 3.5 Version
In my previous GridView entry titled as GridView and Invalid CurrentPageIndex Value Exception I made an example about how to corrigate paged GridView page index before grid is bound to data. Let's to id now .Net Framework 3.5 way. public static class GridViewExtensions { ... Read more...
Published 3 weeks ago

Basic ASP.NET SEO
SEO is popular topic nowadays and as ASP.NET is growing its popularity also as platform for public systems. Therefore SEO is going to be more important topic also for ASP.NET developers. The world of SEO is always in rapid change - can you imagine that last year Google published 450 updates to... Read more...
Published 4 weeks ago

GridView and Invalid CurrentPageIndex Value Exception
There are many developers who have faced the page index problems using GridView. Specially, if GridView supports deleting. Also one may face page index going out of range when there are multiple users managing same data. Here is my little advice about how to avoid page index problems when using... Read more...
Published 4 weeks ago

C# and Partial Classes
.Net 2.0 provided us with new feature called partial classes. Using partial classes we can use multiple files to keep the code of same class. Yes - we can put some methods to one file and the others to another file. Although partial classes may be extremely useful they can be also used to ruin... Read more...
Published 4 weeks ago

Building Object Applications That Work
Building Object Applications That Work by Scott Ambler is great book for every developer who is working with object-oriented systems. This book is recommended reading also for system architects, designers and managers to get better understanding of object-oriented world. The author of this book,... Read more...
Published 4 weeks ago

Working Effectively with Legacy Code
This is the first entry of my books sections in this blog. The first book I want to introduce is Working Effectively with Legacy Code by Michael Feathers. This book is extremely useful when there is need to fix systems with legacy code base. Okay, for me there are two types of legacy code: a)... Read more...
Published 4 weeks ago

SharePoint on Vista
Famous SharePoint features developing company Bamboo Solutions has created installer for Windows SharePoint Services 3.0 SP1 that install WSS3.0 on Windows Vista. The solution allows developers to create SharePoint solutions on their own machines. The need for virtual machine is still there, so... Read more...
Published 1 month ago

C# and anonymous types
One cool feature of C# 3.0 is support of anonymous types. Let's suppose we have to create some data structure and we need this structure in one place in one method. This far we had to create a new private class or structure. With anonymous types we don't have to define new type - we can create it... Read more...
Published 1 month ago