gpeipman
Name: gpeipman
Score: 3,220.01
Last Seen: 2 days, 18 hours, 41 minutes ago
Member Since: 25 March, 2009
PimpThisBlog.com
atom rss
1
pimps
Wednesday, March 17, 2010 1:05:21 AM GMT

Advanced donut caching: using dynamically loaded controls

Advanced donut caching: using dynamically loaded controls
 
weblogs.asp.net -- Yesterday I solved one caching problem with local community portal. I enabled output cache on SharePoint Server 2007 to make site faster. Although caching works fine I needed to do some additional work because there are some controls that show different content to different users. In this example I will show you how to use “donut caching” with user controls – powerful way to drive some content around cache. More... (Technology)
gpeipmangpeipman posted 2 days, 18 hours, 42 minutes ago   comment  
tags: asp.net, caching
1
pimps
Tuesday, March 16, 2010 11:00:32 AM GMT

Entity Framework 4.0: Optimal and horrible SQL

Entity Framework 4.0: Optimal and horrible SQL
 
weblogs.asp.net -- Lately I had Entity Framework 4.0 session where I introduced new features of Entity Framework. During session I found out with audience how Entity Framework 4.0 can generate optimized SQL. After session I also showed guys one horrible example about how awful SQL can be generated by Entity Framework. In this posting I will cover both examples. More... (Technology)
gpeipmangpeipman posted 3 days, 8 hours, 46 minutes ago   comment  
tags: entity framework 4.0, O/R-mapping, sql
1
pimps
24 days, 6 hours, 23 minutes ago
Tuesday, February 23, 2010 1:23:37 PM GMT Tuesday, February 23, 2010 8:59:31 AM GMT

Some e-books and .NET 4.0 beta exams

Some e-books and .NET 4.0 beta exams
 
weblogs.asp.net -- Lately I have found some pretty interesting e-books about different technologies and one announcement about .NET Framework 4.0 beta exams. In this posting I will introduce you books I found and first beta exams. More... (Technology)
gpeipmangpeipman posted 24 days, 10 hours, 47 minutes ago   comment  
tags: .net, Office, virtualization, Windows
1
pimps
Sunday, February 21, 2010 9:56:20 AM GMT

Simple pager for ASP.NET MVC

Simple pager for ASP.NET MVC
 
weblogs.asp.net -- I needed simple pager for one of my ASP.NET MVC projects. I mean really simple pager – no new types my code should be aware of, no any other chemistry I don’t really need in early stages. As ASP.NET MVC has nothing to offer I wrote my own really simple pager implementation. Here is what I did. More... (Technology)
gpeipmangpeipman posted 26 days, 9 hours, 51 minutes ago   comment  
tags: asp.net, mvc, pager
1
pimps
Saturday, February 20, 2010 10:49:59 PM GMT

Code Metrics: Measuring LoC in .NET applications

Code Metrics: Measuring LoC in .NET applications
 
weblogs.asp.net -- My previous posting gave quick overview of code metric called Lines of Code (LoC). In this posting I will introduce you how to measure LoC in Visual Studio projects using Visual Studio Code Analysis and NDepend. More... (Technology)
gpeipmangpeipman posted 26 days, 20 hours, 57 minutes ago   comment  
tags: .net, code metrics, loc
1
pimps
Thursday, February 18, 2010 5:08:57 PM GMT

My object to object mapper source released

My object to object mapper source released
 
weblogs.asp.net -- Some readers asked me for Visual Studio project of my simple object to object mapper. I am glad to announce that the source code of my mapper is now available for download. More... (Technology)
gpeipmangpeipman posted 29 days, 2 hours, 38 minutes ago   comment  
tags: .net, object to object mapping, source, tools
1
pimps
Tuesday, February 16, 2010 7:34:01 AM GMT

User controls should never make redirects during GET request

User controls should never make redirects during GET request
 
weblogs.asp.net -- User controls should never make redirects during GET request Why is my page redirecting me back to front page although it gets all the data it requires? I was going out of my mind when exploring the problem in one system but this time there was really simple answer: you cannot fully trust the code written by n00bs. Okay, here is my story. :) Suppose you have page with some user controls. Something like this. There are some URL parameters that user controls use to make sure what data they need to sho... More... (Technology)
gpeipmangpeipman posted 31 days, 12 hours, 13 minutes ago   comment  
tags: asp.net, user controls
2
pimps
46 days, 7 hours, 14 minutes ago
Monday, February 01, 2010 12:33:19 PM GMT Sunday, January 31, 2010 8:54:47 PM GMT

.NET Framework 4.0: Comparing LINQ and PLINQ performance

.NET Framework 4.0: Comparing LINQ and PLINQ performance
 
weblogs.asp.net -- In one of my sessions I demonstrated how PLINQ uses two CPU-s instead of one and has better performance than non-parallel processing. In this posting I will introduce my experiment and show you my example results. In the end of this posting you can find source code that is ready for demonstration. More... (Technology)
gpeipmangpeipman posted 46 days, 22 hours, 52 minutes ago   comment  
tags: .net framework 4.0, plinq
1
pimps
46 days, 21 hours, 55 minutes ago
Sunday, January 31, 2010 9:51:31 PM GMT Sunday, January 31, 2010 1:33:37 PM GMT

ASP.NET 4.0: How to use application warm-up class

ASP.NET 4.0: How to use application warm-up class
 
weblogs.asp.net -- About week ago I introduced IIS Application Warm-up Module. ASP.NET 4.0 provides separate mechanism for same purposes. ASP.NET 4.0 application warm-up is different and if you like you can use both warm-up methods together. In this posting I will show you how to make ASP.NET 4.0 application warm-up work. More... (Technology)
gpeipmangpeipman posted 47 days, 6 hours, 13 minutes ago   comment  
tags: asp.net, IIS
1
pimps
Saturday, January 30, 2010 3:17:19 PM GMT

Creating configuration reader for web and cloud environments

Creating configuration reader for web and cloud environments
 
weblogs.asp.net -- Currently it is not possible to make changes to web.config file that is hosted on Windows Azure. If you want to change web.config you have to deploy your application again. If you want to be able to modify configuration you must use web role settings. In this blog post I will show you how to write configuration wrapper class that detects runtime environment and reads settings based on this knowledge. More... (Technology)
gpeipmangpeipman posted 48 days, 4 hours, 30 minutes ago   comment  
tags: asp.net, azure
2
pimps
55 days, 6 hours, 38 minutes ago
Saturday, January 23, 2010 1:08:55 PM GMT Friday, January 22, 2010 9:08:20 PM GMT

IIS Application Warm-Up Module

IIS Application Warm-Up Module
 
weblogs.asp.net -- During one of my sessions I demonstrated how to use IIS Application Warm-Up Module. Some applications need to perform initialization tasks before taking requests from users. Application warm-up module is very good tool for this because it does not depend on script language or any other aspect of web application. In this posting I will show you how to use application warm-up module with simple PHP script. More... (Technology)
gpeipmangpeipman posted 55 days, 22 hours, 39 minutes ago   comment  
tags: IIS, php
1
pimps
Sunday, December 27, 2009 4:55:30 PM GMT

Using NHibernate order-by attribute to sort names history

Using NHibernate order-by attribute to sort names history
 
weblogs.asp.net -- I am writing application that besides other cool things lets users insert information about business contacts. My system is able to keep names history of contacts. In this posting I will show you how to use NHibernate mappings to keep names ordered logically. More... (Technology)
gpeipmangpeipman posted 82 days, 2 hours, 51 minutes ago   comment  
tags: NHibernate, sorting
1
pimps
82 days, 22 hours, 38 minutes ago
Saturday, December 26, 2009 9:08:33 PM GMT Saturday, December 26, 2009 11:54:02 AM GMT

Using LINQ and reflection to find matching properties of objects

Using LINQ and reflection to find matching properties of objects
 
weblogs.asp.net -- Using LINQ and reflection to find matching properties of objects As a side product of some experiments I wrote simple LINQ query that matches properties of two objects and returns these properties as list. The code I wrote is pretty simple and I packed it for you as method. More... (Technology)
gpeipmangpeipman posted 83 days, 7 hours, 53 minutes ago   comment  
tags: Linq, reflection
3
pimps
102 days, 7 hours, 13 minutes ago
Monday, December 07, 2009 12:33:38 PM GMT Saturday, December 05, 2009 1:39:24 PM GMT

Using Windows Azure BLOB storage with PHP

Using Windows Azure BLOB storage with PHP
 
weblogs.asp.net -- My last posting described how to read and write files located in Windows Azure cloud storage. In this posting I will show you how to do almost same thing using PHP. We will use Windows Azure SDK for PHP. The purpose of this example is to show you how simple it is to use Windows Azure storage services in your PHP applications. More... (Technology)
gpeipmangpeipman posted 104 days, 6 hours, 8 minutes ago   comment  
tags: cloud storage, php, windows azure
1
pimps
107 days, 22 hours, 51 minutes ago
Tuesday, December 01, 2009 8:56:13 PM GMT Tuesday, December 01, 2009 1:40:08 PM GMT

Windows Azure – Using DataSet with cloud storage

Windows Azure – Using DataSet with cloud storage
 
weblogs.asp.net -- On Windows Azure CTP some file system operations are not allowed. You cannot create and modify files located on server hard disc. I have small application that stores data to DataSet and I needed place where I can hold this file. The logical choice is cloud storage service of course. In this posting I will show you how to read and write DataSet to your cloud storage as XML-file. More... (Technology)
gpeipmangpeipman posted 108 days, 6 hours, 7 minutes ago   comment  
tags: cloud storage, windows azure
4
pimps
117 days, 38 minutes ago
Sunday, November 22, 2009 7:09:01 PM GMT Saturday, November 21, 2009 1:44:44 PM GMT

ASP.NET MVC: Creating reports using Chart control

ASP.NET MVC: Creating reports using Chart control
 
weblogs.asp.net -- ASP.NET Chart control is powerful control you can use to add charting support to your web applications. Although chart controls are mainly used with ASP.NET forms it is not very hard to use them also in ASP.NET MVC applications. In this posting I will show you how to use ASP.NET Chart control in ASP.NET MVC application and I will illustrate how to do it easily so you don’t mess up your views. More... (Technology)
gpeipmangpeipman posted 118 days, 6 hours, 2 minutes ago   comment  
tags: asp.net, chart, mvc, repoting
4
pimps
117 days, 38 minutes ago
Sunday, November 22, 2009 7:09:01 PM GMT Friday, November 20, 2009 12:36:05 PM GMT

Visual Studio 2010: Generating sequence diagrams on the fly

Visual Studio 2010: Generating sequence diagrams on the fly
 
weblogs.asp.net -- One nice feature that Visual Studio 2010 provides is generating sequence diagrams on the fly. Just point out method and choose diagram generating option from context menu. In this posting I will show you how to generate sequence diagrams on the fly. More... (Technology)
gpeipmangpeipman posted 119 days, 7 hours, 11 minutes ago   comment  
tags: design, UML, Visual Studio 2010
3
pimps
119 days, 21 hours, 4 minutes ago
Thursday, November 19, 2009 10:42:50 PM GMT Thursday, November 19, 2009 12:56:39 PM GMT

ASP.NET 4.0: Writing custom output cache providers

ASP.NET 4.0: Writing custom output cache providers
 
weblogs.asp.net -- Until now we can use ASP.NET default output cache. We don’t have any option to write our own output cache mechanisms. ASP.NET 4.0 introduces extensible output cache – programmers can write their own output cache providers. In this posting I will show you how to write your own output cache provider and give you my sample solution to download. More... (Technology)
gpeipmangpeipman posted 120 days, 6 hours, 50 minutes ago   comment  
tags: asp.net 4.0, cache
2
pimps
124 days, 4 hours, 58 minutes ago
Sunday, November 15, 2009 2:49:21 PM GMT Sunday, November 15, 2009 10:04:28 AM GMT

Loading Enterprise Library validation rules from external file

Loading Enterprise Library validation rules from external file
 
weblogs.asp.net -- Keeping validation rules in web.config may grow it pretty long and it is not convenient to make changes there anymore. Developers can manage validation rules easily by using Enterprise Library Configuration tool and therefore there is no good reason to handle validation rules manually. In this posting I will show you how to load validation rules from external configuration files. More... (Technology)
gpeipmangpeipman posted 124 days, 9 hours, 43 minutes ago   comment  
tags: .net, Enterprise Library, validation
1
pimps
126 days, 1 hour, 40 minutes ago
Friday, November 13, 2009 6:06:42 PM GMT Friday, November 13, 2009 1:23:54 PM GMT

ASP.NET MVC: Validating objects using Enterprise Library validation application block

ASP.NET MVC: Validating objects using Enterprise Library validation application block
 
weblogs.asp.net -- Data validation is important topic in applications. There are many validation frameworks available and there should be one that you are happy with. I am currently playing with Enterprise Library 4.1 Validation Application Block and I am integrating it to my ASP.NET MVC application. In this posting I will show you how to use validation block in your ASP.NET MVC application. More... (Technology)
gpeipmangpeipman posted 126 days, 6 hours, 23 minutes ago   comment  
tags: asp.net, Enterprise Library, mvc, validation
Previous 1 2 3 4 5 6 7 Next