http://baldi.myopenid.com/
Name: http://baldi.myopenid.com/
Score: 4,555.45
Last Seen: 663 days, 2 hours, 27 minutes ago
Member Since: 11 January, 2010
DotNetShoutout
atom rss
6
Shouts

Fill a Multi-Dimensional Array

published 935 days, 3 hours, 46 minutes ago posted by KodefuGuruKodefuGuru 936 days, 21 hours, 41 minutes ago
Wednesday, October 27, 2010 3:41:07 PM GMT Monday, October 25, 2010 9:45:58 PM GMT
It is rare that I need to work directly with arrays in today’s world of LINQ to Objects. However, yesterday evening I found myself with the need to fill the elements of a multidimensional array. If I had any observers, I’m sure this would have been an amusing period of time as I struggled to find the correct iteration mechanism to set elements on a multi-dimensional array. It’s quite easy when you’re working with a vector type (one dimension). You grab the array’s length, then iterate using a for loop s... (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: function, extension method, arrays
5
Shouts

Output Caching in asp.net

published 935 days, 3 hours, 46 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 936 days, 13 hours, 37 minutes ago
Wednesday, October 27, 2010 3:41:07 PM GMT Tuesday, October 26, 2010 5:50:03 AM GMT
Recently one of my friend ask about output cache so I decided to put a post about how output cache works and what is the advantages and disadvantage of using output cache. Output cache is a technique to cache generated response from the asp.net pages or controls. Output Caching increases the performance drastically by reducing server round trips. We can use @OutputCache directive to controls output caching for a page or controls. The @OutputCache includes following attributes.Duration: This attribute wi... (more)
category: Web Dev | clicked: 6 | comment | | source: jalpesh.blogspot.com
tags: outputcache, Cache, ASP.NET
9
Shouts

31 Days of Windows Phone 7

published 935 days, 3 hours, 46 minutes ago posted by JemmJemm 936 days, 13 hours ago
Wednesday, October 27, 2010 3:41:07 PM GMT Tuesday, October 26, 2010 6:27:41 AM GMT
In the month of October 2010, I'll be publishing a post every day on Windows Phone 7 development. Here's the list of topics I have covered so far (this list will grow each day, so you should bookmark this page (more)
category: Metro | clicked: 0 | 2 comments | | source: www.jeffblankenburg.com
tags: Windows Phone 7, Windows Phone 7 Development, Windows Phone
9
Shouts

Dean Hume - Dot Less and Minifying Css

published 935 days, 3 hours, 46 minutes ago posted by deanomachinodeanomachino 936 days, 5 hours, 40 minutes ago
Wednesday, October 27, 2010 3:41:07 PM GMT Tuesday, October 26, 2010 1:47:39 PM GMT
Dot Less and Minifying Css A colleague introduced me to this wicked library for css files. If you are lazy like me, this tool is a great way to use variables in your css code so that you dont end up repeating yourself. Taken directly from the site: http://www.dotlesscss.com/ "Write regular CSS with your .NET apps, then add a few variables, mixins and nested rules. less (pronounced dot-less) is a .NET port of the funky ruby LESS libary" Here is an example of some code that could be used in you... (more)
category: Web Dev | clicked: 1 | comment | | source: www.deanhume.com
tags: Minify CSS, .less, Dot less
7
Shouts

Service Locator Design Pattern (C# Examples)

published 943 days, 18 minutes ago posted by BlackWaspBlackWasp 944 days, 12 minutes ago
Tuesday, October 19, 2010 7:09:13 PM GMT Monday, October 18, 2010 7:15:23 PM GMT
The service locator pattern is a design pattern that is used to decouple a class from its dependencies. Rather than the dependant class instantiating its dependencies directly, they are requested from a centralised service locator object. (more)
category: How To | clicked: 64 | comment | | source: www.blackwasp.co.uk
tags: C#, Design Patterns
7
Shouts

jQuery 1.4.3 Released

published 943 days, 18 minutes ago posted by http://quachnguyen.myopenid.com/http://quachnguyen.myopenid.com/ 944 days, 5 hours, 18 minutes ago
Tuesday, October 19, 2010 7:09:13 PM GMT Monday, October 18, 2010 2:08:55 PM GMT
jQuery 1.4.3 is now out! This is the third minor release on top of jQuery 1.4, fixing some bugs and landing some nice improvements. I would like to thank the following community members that provided patches and input for this release: Anton M., Justin Meyer, Colin Snover, Ryan Tenney, Louis-Rémi Babé, David Petersen, Rick Waldron, Dave Reed, John-David Dalton, temp01, Heungsub Lee, J. Ryan Stinnett, Robert Katic, Juriy Zaytsev, James Burke, Jeffery To, Carl Fürstenberg, Jacob Wright, Jeff Robinso... (more)
category: Web Dev | clicked: 0 | comment | | source: code2code.info
tags: jQuery
4
Shouts

Model first + many to many = easy!

published 941 days, 22 hours, 36 minutes ago posted by traskjdtraskjd 942 days, 17 hours, 30 minutes ago
Wednesday, October 20, 2010 8:51:26 PM GMT Wednesday, October 20, 2010 1:57:17 AM GMT
Let's be frank, many-to-many relationships can be a bit more fiddly than they should be when working with them in a domain model. This post highlights how using a model first approach and generating the database from the model makes it easy to create many-to-many relationships, be it in SQL Server, Oracle, PostgreSQL, MySQL or most other relational database stores. (more)
category: Architecture | clicked: 1 | comment | | source: www.mindscape.co.nz
tags: many to many, Model first, Mindscape
5
Shouts

ASP.NET MVC 3: New @model keyword in Razor - ScottGu's Blog

published 940 days, 18 hours, 4 minutes ago posted by iftekharahmedamitiftekharahmedamit 941 days, 19 hours, 42 minutes ago
Friday, October 22, 2010 1:23:36 AM GMT Wednesday, October 20, 2010 11:45:01 PM GMT
Two weeks ago we shipped the ASP.NET MVC 3 Beta Release.  It supports “go live” deployments, and includes a bunch of nice improvements/enhancements.  You can see a summary of the new ASP.NET MVC 3 features in my beta announcement post.  Also read my original ASP.NET MVC 3 Preview post to learn about other ASP.NET MVC 3 features that showed up with that initial preview release. This post is the first of several “mini-posts” I’m going to do that talk about a few of the new ASP.NET MVC 3 Beta features in m... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 3 Beta, ASPNETMVC, Beta, MVC, ASP.NET
7
Shouts

Google Maps for Windows Phone 7 by Joost van Schaik

published 939 days, 7 hours, 39 minutes ago posted by gpeipmangpeipman 941 days, 20 hours, 30 minutes ago
Saturday, October 23, 2010 11:48:23 AM GMT Wednesday, October 20, 2010 10:57:21 PM GMT
How to get Google Maps data to Windows Phone 7 using Bing Maps Control for Silverlight. Take a look at how easy it is to build GIS applications for mobile devices today. (more)
category: How To | clicked: 0 | 1 comment | | source: windowsphonedev.blogspot.com
tags: Windows Phone 7, Development, maps
7
Shouts

The Razor View Engine Basics

published 939 days, 7 hours, 39 minutes ago posted by shayfriedmanshayfriedman 942 days, 5 hours, 9 minutes ago
Saturday, October 23, 2010 11:48:23 AM GMT Wednesday, October 20, 2010 2:18:10 PM GMT
This post takes you through the basics of the new ASP.NET MVC view engine - the razor view engine. (more)
category: Web Dev | clicked: 1 | comment | | source: www.ironshay.com
tags: ASP.NET MVC 3, ASP.NET MVC, Razor
7
Shouts

Anonymous types in C# 3.0 - Debug Mode

published 938 days, 22 hours ago posted by dharadhara 940 days, 13 hours, 36 minutes ago
Saturday, October 23, 2010 9:27:43 PM GMT Friday, October 22, 2010 5:51:40 AM GMT
anonymous types is the new feature in c# 3.0 . Which allows to create a class on the fly without any name. This is very useful while fetching value from LINQ query ... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET
8
Shouts

Changes in ASP.NET MVC 3 Beta

published 938 days, 22 hours ago posted by http://agafonovslava.blogspot.com/http://agafonovslava.blogspot.com/ 941 days, 10 hours, 29 minutes ago
Saturday, October 23, 2010 9:27:43 PM GMT Thursday, October 21, 2010 8:58:37 AM GMT
This article shows changes and bug fieses from article of Imran Baloch blog - bug Fixes and Changes in ASP.NET MVC 3 Beta  Few days ago when ASP.NET MVC team released ASP.NET MVC 3 Beta. This beta release includes some new features, some changes, some improvements and bug fixes. For detail of this beta release see Announcing NuPack, ASP.NET MVC 3 Beta, and WebMatrix Beta 2. In this article, I will show you the most important changes and bug fixes. Seeing and knowing new changes. (more)
category: Web Dev | clicked: 0 | comment | | source: blog.agafonov.net.ua
tags: ASP.NET MVC, ASP.NET MVC 3 Beta, BugFix ASP.NET MVC
8
Shouts

A Basic IoC Container (C#)

published 938 days, 22 hours ago posted by BlackWaspBlackWasp 940 days, 22 hours, 40 minutes ago
Saturday, October 23, 2010 9:27:43 PM GMT Thursday, October 21, 2010 8:47:16 PM GMT
Inversion of control (IoC) containers provide a specialised form of the service locator pattern that simplifies the way in which dependencies are registered and later resolved. This article describes how to create a basic IoC container using generics. (more)
category: How To | clicked: 4 | comment | | source: www.blackwasp.co.uk
tags: IoC, C#, Design Patterns
7
Shouts

ASP.NET MVC 3: Layouts with Razor - ScottGu's Blog

published 938 days, 22 hours ago posted by iftekharahmedamitiftekharahmedamit 939 days, 19 hours, 21 minutes ago
Saturday, October 23, 2010 9:27:43 PM GMT Saturday, October 23, 2010 12:06:02 AM GMT
Two weeks ago we shipped the ASP.NET MVC 3 Beta Release.  It supports “go live” deployments, and includes a bunch of nice improvements/enhancements.  You can see a summary of the new ASP.NET MVC 3 features in my beta announcement post.  Also read my original ASP.NET MVC 3 Preview post to learn about other ASP.NET MVC 3 features that showed up with that initial preview release. This is another in a series of “mini-posts” I’m doing that talk about a few of the new ASP.NET MVC 3 Beta features in more detai... (more)
category: Web Dev | clicked: 3 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 3, ASP.NET MVC, ASPNETMVC, MVC, ASP.NET
5
Shouts

Mono 2.8 is out - Mono

published 937 days, 7 hours, 2 minutes ago posted by iftekharahmedamitiftekharahmedamit 937 days, 19 hours, 39 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Sunday, October 24, 2010 11:48:32 PM GMT
Mono 2.8 is out We have just released Mono 2.8 a major upgrade to the Mono developer platform. This release contains ten months worth of new features, stability fixes, performance work and bug fixes. The highlights of this release include: C# 4.0Defaults to the 4.0 profile New Generational Garbage CollectorUse mono --gc=sgen or mono-sgen to use Mono with the new GC New Frameworks from Mono MIT X11 and Microsoft MS-PL/Apache2: ASP.NET 4.0 Parallel Framew... (more)
category: How To | clicked: 0 | 1 comment | | source: www.mono-project.com
tags: Mono, MonoDevelop
4
Shouts

MEF + Object Factories using Export Provider

published 937 days, 7 hours, 2 minutes ago posted by http://pwlodek.blogspot.com/http://pwlodek.blogspot.com/ 937 days, 12 hours, 7 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Monday, October 25, 2010 7:20:06 AM GMT
In this post I am going to introduce the FactoryExportProvider, which is a part of MefContrib project, which extends MEF by allowing to define object factories in the fluent manner. (more)
category: How To | clicked: 13 | comment | | source: pwlodek.blogspot.com
tags: MEF, MefContrib
8
Shouts

C# 4.0 Reflection Programming - Part 3

published 937 days, 7 hours, 2 minutes ago posted by sonukapoorsonukapoor 940 days, 1 hour, 23 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Friday, October 22, 2010 6:04:15 PM GMT
As introduced in the first article, the most typically-used tools associated with .NET reflection are: the Type class and Assembly class related members. In this second article, we are going to pick up the .NET reflection tools to set up more samples to explore the wide and extensive use of reflection. (more)
category: Architecture | clicked: 0 | comment | | source: dotnetslackers.com
tags: Reflection, CSharp
8
Shouts

C# 4.0 Reflection Programming - Part 2

published 937 days, 7 hours, 2 minutes ago posted by sonukapoorsonukapoor 940 days, 1 hour, 22 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Friday, October 22, 2010 6:05:29 PM GMT
As introduced in the first article, the most typically-used tools associated with .NET reflection are: the Type class and Assembly class related members. In this second article, we are going to pick up the .NET reflection tools to set up more samples to explore the wide and extensive use of reflection. (more)
category: Architecture | clicked: 0 | comment | | source: dotnetslackers.com
tags: C#, Reflection
10
Shouts

NuPack needs a new name. Do you want the one that Rocks?

published 937 days, 7 hours, 2 minutes ago posted by abdullinabdullin 940 days, 5 hours, 10 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Friday, October 22, 2010 2:17:37 PM GMT
needs a new name. You can vote for you favorite one at the Codeplex. Read the article for more or just vote for NRocks, OuterPack, Snapfetch or other alternatives! (more)
category: Architecture | clicked: 1 | comment | | source: abdullin.com
tags: nupack, Abdullin, NRocks
6
Shouts

Sending Email With ASP.NET, Ajax, C#

published 937 days, 7 hours, 2 minutes ago posted by http://cmmaung.myopenid.com/http://cmmaung.myopenid.com/ 940 days, 10 hours, 25 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Friday, October 22, 2010 9:02:40 AM GMT
Introduction Sending Email that will display like Cotact Us Form with validation  Background This will allow user to send email to Admin with classic interface, input validation, tableless and without reloading pageUsing the code This includes following : ·         Sending Email Interface (default.aspx) o    Name (with RequiredFieldValidator) o    Email (with RequiredFieldValidator & RegularExpressionValidator for email address) o    Website (with RequiredFieldValidator & RegularExpressio... (more)
category: Web Dev | clicked: 0 | comment | | source: www.myanmarasp.net
Previous 1 2 ... 4 5 6 7 8 9 10 11 12 13 ... 79 80 Next