impa
Name: impa
Score: 14,623.02
Last Seen: 8 hours, 57 minutes ago
Member Since: 7 February, 2009
DotNetShoutout
atom rss
7
shouts

SNEAK PEEK New Silverlight application themes - Tim Heuer

published 9 hours, 21 minutes ago posted by jantujantu 1 day, 8 hours, 41 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 1:57:28 PM GMT
Our UX design team for Silverlight has been thinking about app building a lot this past year, gathering valuable input from developers, designers and end-users about how people interact with applications, primarily line-of-business applications (). Hot off the press here is a preview of some of the things we’ve been thinking about from a XAML theme perspective. (more)
category: Silverlight | clicked: 41 | comment | | source: timheuer.com
tags: metro, RIA, riaservices, Silverlight, Templates, templating, Themes, WPF, XAML
6
shouts

Prism for Silverlight 2: Taking ‘Hello World' to a Whole New Level

published 9 hours, 21 minutes ago posted by developmentalmadnessdevelopmentalmadness 1 day, 3 hours, 59 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 6:39:36 PM GMT
>     The World's Most Over-engineered “Hello World” Demo I wanted to build a demo/guidance application for Silverlight that merges everything I want to accomplish in a Silverlight 2 application. These were my goals:WCF integration, Design-time data binding, Independent, decoupled modules, Commanding support. (more)
category: Silverlight | clicked: 22 | 1 comment | | source: www.developmentalmadness.com
7
shouts

Building AJAX Based Navigation list in ASP.NET MVC and LINQ

published 9 hours, 21 minutes ago posted by dev8546dev8546 1 day, 7 hours, 26 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 3:12:40 PM GMT
Contents [hide]1 Introduction 2 What I have done 3 The Code 4 Summary Introduction In this article we are going to learn how to develop a custom HTML navigation helper for ASP.NET MVC. The navigation helper also demonstrates the use of ASP.NET MVC AJAX. The navigation from one set of result to another is done using AJAX. I have used VS 2008 and ASP.NET MVC 1.0 Figure 1: Real world may be Amazon.com. The > Or What I have done I have created a MVC application.Added a custom H... (more)
category: ASP.NET | clicked: 36 | comment | | source: dotnetslackers.com
9
shouts

Angle Bracket Percent : T4MVC 2.6.13: now officially in MvcContrib, with a few new features - David Ebbo's blog

published 9 hours, 21 minutes ago posted by mithumithu 1 day, 11 hours, 52 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 10:46:14 AM GMT
A few weeks back, we announced (mostly on Twitter) that T4MVC was moving into the MvcContrib Codeplex project.  I didn’t say much about it at the time because there wasn’t a whole lot to say yet, in the sense that the move had not actually happened.  MvcContrib was transitioning from github to Mercurial, and since I wasn’t familiar with either one, I figured I’... (more)
category: ASP.NET | clicked: 31 | comment | | source: blogs.msdn.com
tags: ASP.NET, David Ebbo, MVC, T4, T4MVC, Twiiter
11
shouts

ASP.NET MVC 2 Released - ScottGu's Blog

published 9 hours, 21 minutes ago posted by mithumithu 1 day, 11 hours, 58 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 10:40:08 AM GMT
I’m happy to announce that the final release of ASP.NET MVC 2 is now available for VS 2008/Visual Web Developer 2008 Express with ASP.NET 3.5.  You can download and install it from the following locations: Download ASP.NET MVC 2 using the Microsoft Web Platform InstallerDownload ASP.NET MVC 2 from the Download Center The final release of VS 2010 and Visual Web Developer 2010 will have ASP.NET MVC 2 built-in – so you won’t need an additional install in order to use ASP.NET MVC 2 with them.  ASP.NET MVC 2... (more)
category: ASP.NET | clicked: 47 | 1 comment | | source: weblogs.asp.net
tags: ASP .NET, ASP .NET MVC 2, MVC, ScottGu, Visual Studio
6
shouts

TFS 2010 Installation and Upgrade success rates - Brian Harry

published 9 hours, 21 minutes ago posted by impaimpa 1 day, 4 hours, 51 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 5:47:52 PM GMT
As I’ve discussed in the past, we work VERY hard in this release to really improve the ease of installing TFS.  We’ve done everything from making more components optional, reducing prereqs, configuring prereqs for you, providing better defaults, implementing better diagnostic checks, making configuration serviceable and more.  It’s been a lot of work but I think it has really paid off in really transforming the TFS install experience from one that is very ... (more)
category: Foundation | clicked: 25 | comment | | source: blogs.msdn.com
tags: TFS
5
shouts

Memory Leak with delegates and workflow foundation

published 1 day, 9 hours, 45 minutes ago posted by omaralzabiromaralzabir 4 days, 16 hours, 13 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Tuesday, March 09, 2010 6:25:17 AM GMT
Memory Leak with delegates and workflow foundation Recently after Load Testing my open source project Dropthings, I encountered a lot of memory leak. I found lots of Workflow Instances and Linq Entities were left in memory and never collected. After profiling the web application using .NET Memory Profiler, it showed the real picture: It shows you that instances of the several types are being created but not being removed. You see the “New” column has positive value, but the “Remove” column has 0. Tha... (more)
category: Architecture | clicked: 29 | comment | | source: weblogs.asp.net
tags: C#, WWF
7
shouts

Optimize ASP.NET Membership Stored Procedures for greater speed and scalability

published 9 hours, 21 minutes ago posted by omaralzabiromaralzabir 4 days, 16 hours, 12 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Tuesday, March 09, 2010 6:26:54 AM GMT
Optimize ASP.NET Membership Stored Procedures for greater speed and scalability Last year at Pageflakes, when we were getting millions of hits per day, we were having query timeout due to lock timeout and Transaction Deadlock errors. These locks were produced from aspnetUsers and aspnetMembership tables. Since both of these tables are very high read (almost every request causes a read on these tables) and high write (every anonymous visit creates a row on aspnet_Users), there were just way too many lo... (more)
category: ASP.NET | clicked: 36 | comment | | source: weblogs.asp.net
tags: ASP.NET, Performance
9
shouts

My new home page, refreshed [Updated collection of great Silverlight/WPF Data Visualization resources!] - Delay's Blog

published 9 hours, 21 minutes ago posted by AlexAlex 2 days, 15 hours, 56 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 6:42:44 AM GMT
Some great content has been published since I posted my previous collection of Silverlight/WPF Charting links. What's more, the November 2009 release of the Silverlight Toolkit and the February 2010 release of the WPF Toolkit have both been released, so please have a look at them if you haven't already! Now, without further ado, here are all links that are fit to print (FYI: previously published lin... (more)
category: Silverlight | clicked: 42 | comment | | source: blogs.msdn.com
tags: Silverlight, SL, WPF
5
shouts

Innovation Showcase : IE 8 Leads in Malware Protection

published 9 hours, 21 minutes ago posted by jbarnesjbarnes 2 days, 18 hours, 23 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 4:15:11 AM GMT
11 March 2010 IE 8 Leads in Malware Protection According to a recent report by NSS Labs Microsoft's Internet Explorer 8 outperformed four other Web browsers in protecting against malware spread by social engineering techniques. The main reason why IE 8 beat out the competition -- which included Apple Safari 4, Google Chrome 4, Mozilla Firefox 3.5 and Opera 10 -- appears to be Microsoft's use of its "SmartScreen Filter" technology. SmartScreen is a reputation-based URL comparison service that warns ... (more)
category: Architecture | clicked: 27 | comment | | source: blogs.msdn.com
5
shouts

Load InfoPath 2010 Forms & XSN Templates in .Net Web Applications

published 1 day, 9 hours, 45 minutes ago posted by sherazamsherazam 2 days, 6 hours, 6 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Thursday, March 11, 2010 4:33:01 PM GMT
Aspose.Form for .NET now provides full support for InfoPath 2010 controls. Now it is possible to load InfoPath 2010 forms and XSN Templates in .NET Web Applications. Following is the list of InfoPath 2010 controls that are fully supported. • Text Box • Rich Text Box • Drop Down List • Combo Box • Check Box • Radio Button • Data Picker • List Box • Bulleted List • Numbered List • Plain List • Partially supported Inc Picture • Button • Fi... (more)
category: ASP.NET | clicked: 24 | comment | | source: www.aspose.com
tags: Infopath, InfoPath Controls, InfoPath Forms & XSN Templates, Load Data Source Based Form Templates in .Net Web Application, Load InfoPath Form Templates in .Net Web Application
4
shouts

Entity Framework 4 - Modified Self-Tracking Entity framework that supports Code-Only and Persistence Ignorance

published 1 day, 9 hours, 45 minutes ago posted by adebeeradebeer 1 day, 22 hours, 1 minute ago
Friday, March 12, 2010 12:53:20 PM GMT Friday, March 12, 2010 12:37:45 AM GMT
In this post I'll share with you a customised version of the VS2010 RC Self-Tracking framework that supports code-only. A persistent ignorant data access layer is also included. (more)
category: Architecture | clicked: 32 | comment | | source: codenition.blogspot.com
tags: Entity Framework, IoC, Visual Studio 2010
5
shouts

Filter GridView Records using AJAX Slider Control

published 1 day, 9 hours, 45 minutes ago posted by dotnetfundadotnetfunda 1 day, 21 hours, 16 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Friday, March 12, 2010 1:22:19 AM GMT
This article shows how to filter GridView Records using AJAX Slider Control. (more)
category: Ajax | clicked: 22 | comment | | source: www.dotnetfunda.com
4
shouts

SharePoint Lookup Pack Cross-Site Lookup Columns/Filter List Columns

published 1 day, 9 hours, 45 minutes ago posted by tech-kingtech-king 2 days, 13 hours ago
Friday, March 12, 2010 12:53:20 PM GMT Thursday, March 11, 2010 9:38:52 AM GMT
SharePoint Cross-Site Lookup PackCross-Site Lookup other lists from different sites;Freely convert among SharePoint Cross-Site Lookup column, SharePoint Cascaded Lookup column and SharePoint default lookup column;Filter field values by selecting list view;Filter field values by other fields(Parent Column) in the same list;Filter field values by Filter Column in the looked-up list. More information please visit SharePopint Lookup Pack. (more)
category: ASP.NET | clicked: 45 | comment | | source: www.sharepointboost.com
tags: Sharepoint
7
shouts

5 Tips to get the most out of your coding time

published 9 hours, 21 minutes ago posted by HatimRHatimR 2 days, 4 hours, 50 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 5:48:08 PM GMT
I remember seeing an add from Microsoft I believe for hiring programmers and the jist of it was “We give you an office with a door”. Why you might wonder? (more)
category: Foundation | clicked: 70 | comment | | source: hatim.indexdev.net
tags: Consulting, Productivity, time management golf
4
shouts

Calling ASP.NET Web Service Using Jquery - Part III - Fetch Data From SQL Server

published 1 day, 9 hours, 45 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 2 days, 1 hour, 59 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Thursday, March 11, 2010 8:39:46 PM GMT
My previous two posts on using Jquery for calling ASP.NET web service takes you to the basics of calling a web service using Jquery AJAX. In this last post of the series I will show hot to fetch data from the SQL Server through a web service. In this example I am going to show on how we can fetch data from SQL Server. I am using pretty well known Adventure Works database for this example. I am using Person.Contact table for this example. I will show on how to fetch data i.e. first name, last name and e-... (more)
category: ASP.NET | clicked: 51 | comment | | source: www.midnightprogrammer.net
tags: Ajax, ASP.NET, jQuery, Web Service
6
shouts

Multi-User Systems and Concurrency

published 9 hours, 21 minutes ago posted by BlackWaspBlackWasp 2 days, 43 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 9:56:01 PM GMT
In a single-user application information can be read, created, updated or deleted without the risk of interfering with other people's work. When more than one user has the ability to access shared information, concurrency control becomes essential. (more)
category: Architecture | clicked: 39 | comment | | source: www.blackwasp.co.uk
tags: Concurrency, multiuser
7
shouts

Simple-MongoDB – Simplified storage of entities

published 9 hours, 21 minutes ago posted by sedanwersedanwer 3 days, 3 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Wednesday, March 10, 2010 10:35:11 PM GMT
New features Just checkedin some new features to my C# 4.0 based MongoDB driver: New simplified API, using generics and adds pluralization for collection Added SimoIoC which will resolve resources like pluralizer, commands etc. this lets you replace certain parts of the implementation with own implementations. Support for document references via the new type SimoReference All code is written for .Net 4.0 and is tested against MongoDB v.1.2.4 Why Simple-MongoDB? Simple support for POCOS. No mappings... (more)
category: Foundation | clicked: 35 | comment | | source: daniel.wertheim.se
tags: MongoDB, POCO, Simple-MongoDB
4
shouts

How to make your Control Always Available While Scrolling in ASP.NET AJAX

published 1 day, 9 hours, 45 minutes ago posted by dotnetfundadotnetfunda 2 days, 11 hours, 18 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Thursday, March 11, 2010 11:21:00 AM GMT
Sometimes in your Web application you might need your menu control to be available even when the user is scrolling down your page. Some Web Applications or Websites have a lot of contents on the page and when the user control down he forgets about the menus and sometimes it because a pain to always go up the page to find a menu. Sometimes it good if the menu can stay on the display while the user scrolls up and down. In this Article we are going to demonstrate on how to achieve this. (more)
category: Ajax | clicked: 27 | comment | | source: www.dotnetfunda.com
4
shouts

MVVM - Creating ViewModel : create dynamic proxies with Castle

published 1 day, 9 hours, 45 minutes ago posted by jmix90jmix90 2 days, 17 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Thursday, March 11, 2010 10:21:40 PM GMT
Here is the next episode of our serie MVVM - Creating ViewModel. Today we are going to discover how to create ViewModel from business objects by creating dynamic proxies after a little recap on what they are. (more)
category: Foundation | clicked: 53 | 1 comment | | source: blog.lexique-du-net.com
tags: Dynamic Proxy, INotifyPropertyChanged, MVVM, M-V-VM, Pattern, Patterns, Patterns and Practices, WPF, XAML
Previous 1 2 3 4 5 6 7 8 9 10 ... 269 270 Next