Hussey
Name: Hussey
Score: 2,589.28
Last Seen: 1213 days, 2 hours, 28 minutes ago
Member Since: 14 October, 2009
DotNetShoutout
atom rss
9
Shouts

Implementing a jQuery Modal Window in ASP.NET - Misfit Geek

published 1219 days, 5 hours, 16 minutes ago posted by jantujantu 1221 days, 2 hours, 42 minutes ago
Saturday, January 23, 2010 11:16:12 AM GMT Thursday, January 21, 2010 1:50:29 PM GMT
I’ve recently had several questions about attempts to use the Ajax Control Toolkit’s Modal Dialog, or more accurately, to misuse it, as a window.It’s a “dialog” and therefore not well suited to being used for receiving data from the user.Controls like the Modal Dialog Extender Control are convenient when they do when we want them to do but when they don’t there is no reason not to “roll our own” functionality.In this case I’ve built a sample using jQuery to display a Semi-Modal Window to allow the ... (more)
category: Web Dev | clicked: 9 | comment | | source: misfitgeek.com
tags: msft, ASP .NET, jQuery
9
Shouts

StackOverflow - Podcast #80

published 1218 days, 4 hours, 48 minutes ago posted by mithumithu 1221 days, 7 hours, 55 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Thursday, January 21, 2010 8:37:25 AM GMT
In this episode of the Stack Overflow podcast, Joel and Jeff discuss GitHub, the value of formal code documentation, and how to decide what features belong in the next version of your software. We’ve had some difficulty adapting to GitHub, where the reverse engineering of the Javascript Markdown (WMD) editor was performed. It regularly confuses everyone that encounters it, and that’s frustrating from a support perspective. For example, why does the MangOS project on GitHub have 854 branches? How is tha... (more)
category: Podcast | clicked: 0 | comment | | source: blog.stackoverflow.com
tags: C#, stackoverflow, JavaScript, GitHub
14
Shouts

Innovation Showcase : Connecting PHP to Microsoft Excel & Using LINQ with PHP

published 1227 days, 3 hours, 37 minutes ago posted by wzackwzack 1228 days, 21 hours, 43 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 6:48:33 PM GMT
Connecting PHP to Microsoft Excel & Using LINQ with PHP Peter Laudati & Dmitry Lyalin host the edu-taining Connected Show developer podcast on cloud computing and interoperability. Check out episode 22 “PHP LINQ Fest”.  Peter interviews Maarten Balliauw (Microsoft ASP.NET MVP) from Real Domen about two PHP-related open-source projects he has been working on: PHP LINQ & PHP Excel. PHP LINQ is set of PHP classes that implement .NET’s Language Integrated Query (LINQ) syntax in PHP.  PHP Exc... (more)
category: Architecture | clicked: 0 | 1 comment | | source: blogs.msdn.com
8
Shouts

Severely Decoupled Configuration - Jesse Liberty

published 1228 days, 4 hours, 57 minutes ago posted by jantujantu 1230 days, 4 hours, 49 minutes ago
Thursday, January 14, 2010 11:34:36 AM GMT Tuesday, January 12, 2010 11:42:41 AM GMT
In the spirit of a glass-house you get to see everything as it happens open source project,here is a draft of how I see handling configuration for the Silverlight HyperVideo Platform  this will be modified in the next iteration to take more advantage of the services provided by MEF. Design Goals It doesn’t matter what order the modules are loaded by MEF.Maximum encapsulation,minimal coupling EventManager Rather than having objects publish and sub... (more)
category: Metro | clicked: 0 | comment | | source: blogs.silverlight.net
tags: Mini-Tutorial, Silvelight, MEF, HyperVideoProject
10
Shouts

Entity Framework in .NET 4 - Somasegar

published 1227 days, 3 hours, 37 minutes ago posted by jantujantu 1230 days, 4 hours, 58 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Tuesday, January 12, 2010 11:33:32 AM GMT
The Entity Framework in .NET 4 has a lot of new features and enhancements.  We got a lot of great feedback from you on the initial release of the Entity Framework (EF).  Let’s take a look at some of the things coming in new with Entity Framework 4. Foreign Keys Entity Framework now includes support for foreign keys.  Foreign key associations allow you to include foreign key properties on your entities, simplifying a number of key scenarios including data binding and n-tier... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
tags: .NET Framework, Visual Studio, Developer Division
11
Shouts

Microsoft SQL Server Migration Assistant for MySQL v1.0 CTP1

published 1226 days, 5 hours, 45 minutes ago posted by http://quachnguyen.myopenid.com/http://quachnguyen.myopenid.com/ 1229 days, 2 hours, 12 minutes ago
Saturday, January 16, 2010 10:47:24 AM GMT Wednesday, January 13, 2010 2:20:14 PM GMT
Microsoft has made available for download a free tool designed to streamline the migration of MySQL databases to SQL Server. At the start of this week, the company began offering customers a preview version of Microsoft SQL Server Migration Assistant. According to the software giant, the Community Technology Preview of SQL Server Migration Assistant (SSMA) for MySQL v1.0 integrates seamlessly with not only SQL Server 2005, but also SQL Server 2008 and even SQL Azure. The company underlines that the migra... (more)
category: Data | clicked: 1 | comment | | source: code2code.info
tags: SQL
7
Shouts

How does ASP.NET MVC work – Part 2 - gopalk

published 1227 days, 3 hours, 37 minutes ago posted by ali62bali62b 1228 days, 19 hours, 47 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 8:45:15 PM GMT
In the last post we saw how an ASP.NET MVC request gets routed through to the MVC framework through the ASP.NET framework. We also saw that the MvcHandler class is the HttpHandler responsible for servicing an ASP.NET MVC-request. A simplistic view of the order in which routing and MVC classes come into play is like this: UrlRoutingModule -> MvcRoutingHandler -> MvcHandler So at this stage our request has got an HttpHandler assigned in the form of MvcHandler. Moving ahead in the HttpApplication event pr... (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.charteris.com
tags: asp.ner mvc, life cycle
8
Shouts

Angle Bracket Percent : Take your MVC User Controls to the next level

published 1228 days, 4 hours, 57 minutes ago posted by ali62bali62b 1229 days, 3 hours, 36 minutes ago
Thursday, January 14, 2010 11:34:36 AM GMT Wednesday, January 13, 2010 12:55:52 PM GMT
Take your MVC User Controls to the next level Note: this is based on ASP.NET MVC 2 RC, and will not work on earlier builds.  The quick pitch: make your User Controls as cool as built-in render helpers! The goal of this post is to show you how to change the way MVC user controls are called from something like this:<%= Html.Partial("~/Views/Shared/gravatar.ascx", new { Email = "foo@bar.com", Size = 80 }) %> To something that looks just like a built-in render helper (like Html.TextBox(…)):<%= Html.Gra... (more)
category: Web Dev | clicked: 1 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC
9
Shouts

jQuery TOOLS / Expose - Make your HTML elements stand out

published 1228 days, 4 hours, 57 minutes ago posted by http://jacekciereszko.pl/http://jacekciereszko.pl/ 1228 days, 18 hours, 38 minutes ago
Thursday, January 14, 2010 11:34:36 AM GMT Wednesday, January 13, 2010 9:53:36 PM GMT
jQuery Tools / Expose - Make your HTML elements stand out Demo Start entering text on the fields below and you'll see the exposing effect: Username Password The story Expose is a JavaScript tool that exposes selected HTML elements on the page so that the surrounding elements will gradually fade out. The exposing effect was first introduced in the overlay tool. Usually the effect is an integral part of the program and cannot be used separately. This tool takes the idea of exposing a little further... (more)
category: Web Dev | clicked: 0 | 2 comments | | source: flowplayer.org
tags: JavaScript
10
Shouts

Scott Hanselman's Computer Zen - The Weekly Source Code 47 - ASP.NET 3.5 Dynamic Data: FilterRepeaters and Dynamic Linq Query Generation

published 1227 days, 3 hours, 37 minutes ago posted by ali62bali62b 1229 days, 3 hours, 34 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 12:58:04 PM GMT
First, let me start this post by thanking Tatham Oddie. He helped my buddy John Batdorf and I debug our issue remotely from Australia. He's patient, kind, opinionated and Tatham's got a darn fine blog that you should subscribe to now. I also found great inspiration from Stephen Naughton's excellent blog. He's continually pushing ASP.NET and Dynamic Data to do fun things and I was able to use 95% of his auto-complete code as I found it. And finally Marcin Dobosz's blogis where I started, taking his Dynami... (more)
category: Web Dev | clicked: 0 | comment | | source: www.hanselman.com
tags: Dynamic Data, Linq
11
Shouts

The Weekly Source Code 47 - ASP.NET 3.5 Dynamic Data: FilterRepeaters and Dynamic Linq Query Generation - Scott Hanselman

published 1227 days, 3 hours, 37 minutes ago posted by jantujantu 1229 days, 5 hours, 42 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 10:50:13 AM GMT
First, let me start this post by thanking Tatham Oddie. He helped my buddy John Batdorf and I debug our issue remotely from Australia. He's patient, kind, opinionated and Tatham's got a darn fine blog that you should subscribe to now. I also found great inspiration from Stephen Naughton's excellent blog. He's continually pushing ASP.NET and Dynamic Data to do fun things and I was able to use 95% of his auto-complete code as I found it. And finally Marcin Dobosz's blogis where I started, taking his Dynami... (more)
category: Web Dev | clicked: 3 | comment | | source: www.hanselman.com
tags: ASP.NET MVC, ASP.NET AJAX, ASP.NET Dynamic Data, Source code, ASP.NET
9
Shouts

Continuing to an outer loop - Eric Lippert

published 1227 days, 3 hours, 37 minutes ago posted by jantujantu 1229 days, 5 hours, 27 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 11:05:20 AM GMT
When you have a nested loop, sometimes you want to “continue” the outer loop, not the inner loop. For example, here we have a sequence of criteria and a sequence of items, and we wish to determine if there is any item which matches every criterion: match... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: queries, Code Quality, C#, goto
8
Shouts

Angle Bracket Percent : T4MVC 2.6.10: fluent route value API, shorter way to refer to action, and more - David Ebbo's blog

published 1227 days, 3 hours, 37 minutes ago posted by mithumithu 1228 days, 20 hours, 59 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 7:32:50 PM GMT
I just posted build 2.6.10.  There were also a few builds in between since I last blogged about 2.6, so this post describes some of those changes (full history here).  Fluent route value API As you probably know, T4MVC uses a pattern where the route values are encapsulated using a pseudo-call to a controller action, e.g. Html.ActionLink("Delete Dinner", MV... (more)
category: Web Dev | clicked: 1 | 1 comment | | source: blogs.msdn.com
tags: David Ebbo, API, CodePlex, T4MVC, MVC
9
Shouts

The dynamic duo: LightSpeed & Azure

published 1227 days, 3 hours, 37 minutes ago posted by traskjdtraskjd 1228 days, 14 hours, 22 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Thursday, January 14, 2010 2:10:16 AM GMT
Describes how LightSpeed and the Windows Azure platform work happily together with details on running LightSpeed based web/worker roles with the Azure partial trust policy. (more)
category: Architecture | clicked: 0 | comment | | source: www.mindscape.co.nz
tags: LightSpeed, Linq, Mindscape, Azure
15
Shouts

Innovation Showcase : Windows Azure Goes Live in January

published 1227 days, 3 hours, 37 minutes ago posted by wzackwzack 1229 days, 15 hours, 38 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 12:53:49 AM GMT
Windows Azure Goes Live in January At long last the wait is over. Windows Azure went live on January 1st, 2010.  At Microsoft’s Professional Developers Conference in November it was announced that the Windows Azure Platform will go live in January but it will be free for subscribers until February.  This article by Kathleen Richards for Visual Studio Magazine gives a good overview of the offering, where it stands now and a peek ahead into it’s future. (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
9
Shouts

Scheduling jobs in Sql server Express

published 1227 days, 3 hours, 37 minutes ago posted by PraveenPraveen 1228 days, 20 hours, 51 minutes ago
Friday, January 15, 2010 12:54:58 PM GMT Wednesday, January 13, 2010 7:40:53 PM GMT
I know, at some point you need this when you use sql express. Sql express is the limited edition of Sql server. So, it doesn't contain all the features. To schedule we need sql server agent service. But it comes only with sql server. So, creating jobs are not possible with sql express. So, is there any way? Yes. Today I found a nice article on it. And that is perfect. Take a look at it and let me know your ideas on it. http://www.sqlteam.com/article/scheduling-jobs-in-sql-server-express Hope you like... (more)
category: Data | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: SQL Server, jobs, Scheduling, SQL Express
8
Shouts

REST Enabled Service in WCF Tutorial

published 1230 days, 3 hours, 47 minutes ago posted by dotnetsparkdotnetspark 1231 days, 13 hours, 4 minutes ago
Tuesday, January 12, 2010 12:45:01 PM GMT Monday, January 11, 2010 3:27:46 AM GMT
This article will explain step to step explanation of, how to create a REST based service and how to consume that in a client. Although, this is a very simple service taken as an example, but it will really help in creating complex REST Services. (more)
category: Architecture | clicked: 0 | comment | | source: www.dotnetspark.com
tags: DotNetSpark, WCF, REST
9
Shouts

Calculate the Number of Business Days in a Range (C#)

published 1229 days, 4 hours, 14 minutes ago posted by BlackWaspBlackWasp 1232 days, 4 hours, 18 minutes ago
Wednesday, January 13, 2010 12:17:38 PM GMT Sunday, January 10, 2010 12:14:00 PM GMT
A common task is to calculate the number of business days that exist within a date range. In most western cultures, these are the days from Monday to Friday and excluding Saturdays and Sundays. The resultant number should also exclude national holidays. (more)
category: How To | clicked: 4 | comment | | source: www.blackwasp.co.uk
tags: .NET, algorithms, C#
5
Shouts

Asp.Net Ajax CheckBoxList

published 1231 days, 58 minutes ago posted by pons_saravananpons_saravanan 1231 days, 6 hours, 41 minutes ago
Monday, January 11, 2010 3:34:18 PM GMT Monday, January 11, 2010 9:51:29 AM GMT
Asp.Net Ajax CheckBoxList ASP.Net Ajax CheckBoxList with data binding I usually choose ASP.Net GridView for a column with Checkbox, but I had a requirement few weeks before to use a single column based checkbox list. So I just browsed through the available controls in the toolbox,... (more)
category: Web Dev | clicked: 1 | comment | | source: www.vbknowledgebase.com
7
Shouts

Brad Wilson: Why You Don't Need ModelMetadata.Attributes

published 1231 days, 58 minutes ago posted by ali62bali62b 1233 days, 4 hours, 4 minutes ago
Monday, January 11, 2010 3:34:18 PM GMT Saturday, January 09, 2010 12:27:54 PM GMT
Hardly a week goes by where someone isn’t requesting that we add a .Attributes collection to ModelMetadata in MVC 2. We don’t want to add this collection, because it gives attributes a “better among equals” status among all the ways that you could express metadata (in addition to attributes, you might choose to get your metadata from your database schema, from data inside a database, from an external configuration source like an XML file, among many other possibilities). If we add .Attributes, we’re dec... (more)
category: Web Dev | clicked: 1 | comment | | source: bradwilson.typepad.com
tags: Metadata, Attribute, ASP.NET MVC 2, DataAnnotation