mithu
Name: mithu
Score: -8
Last Seen: 958 days, 23 hours, 39 minutes ago
Member Since: 19 November, 2008
DotNetShoutout
atom rss
12
Shouts

Alvas.Net Blog: What is ACM driver?

published 1206 days, 19 hours, 32 minutes ago posted by alvasalvas 1211 days, 1 hour, 17 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Thursday, January 28, 2010 7:59:48 AM GMT
Audio Compression Manager (ACM) is the Windows multimedia framework that manages audio codecs. Codec is a computer program that compresses/decompresses digital audio data according to a given audio file format or streaming audio format. ACM driver is dynamic-link library (DLL) which contains audio codecs for different audio formats. ACM driverss can be recognized by their filename extension ".acm". For more details please see AudioCompressionManager The code below can be used to list ACM codec... (more)
category: How To | clicked: 0 | comment | | source: alvasnet.blogspot.com
tags: Audio&Multimedia
11
Shouts

Role of ItemMetadata.xml in Infopath forms [SharePoint workflow].

published 1206 days, 19 hours, 32 minutes ago posted by PraveenPraveen 1210 days, 13 hours, 50 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Thursday, January 28, 2010 7:26:38 PM GMT
Introduction: ItemMetadata.xml is the file used to store/transfer the data from one Infopath to another. The name of the file is case - sensitive. For example, in a sharepoint workflow, there are 10 steps, in each step we are using infopath and we want send some information from one to the next infopath form, the information won't save any where. we need to tell explicitly to infopath to store in xml file. that is nothing but ItemMetadata.xml. It acts as the secondary data source to the infopath... (more)
category: Architecture | clicked: 7 | comment | | source: praveenbattula.blogspot.com
tags: workflow, Infopath, Sharepoint, ItemMetadata.xml
10
Shouts

ASP.NET - Download file to client browser | syntaxhelp.com

published 1207 days, 13 hours, 28 minutes ago posted by himanethimanet 1210 days, 18 hours, 37 minutes ago
Sunday, January 31, 2010 7:48:30 PM GMT Thursday, January 28, 2010 2:39:33 PM GMT
SQL ServerASP.NETSQL Azure with ASP Dot NetASP.NET - Working with Request ObjectASP.NET - Working with Response ObjectASP.NET - Download file to client browserASP.NET - Refreshing the page automatically and redirecting to some pageASPNET4 - SEO Friendly Permanent RedirectsASP.NET - Working with Page Attributes ASP.NET - Send Email in C#.NETASP.NET - Configuration SettingsASP.NET - Encryption using Forms Authentication ASP.NET - Working with Connection String Encryption and Decryption in Web.Config A... (more)
category: Web Dev | clicked: 0 | comment | | source: syntaxhelp.com
tags: ASP.NET
11
Shouts

kny#: The template method pattern

published 1206 days, 19 hours, 32 minutes ago posted by http://kennyeliasson.myopenid.com/http://kennyeliasson.myopenid.com/ 1209 days, 20 hours, 55 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Friday, January 29, 2010 12:21:57 PM GMT
One of my favorite patterns is the "Template method pattern". Basically its about having a abstract class that defines common behaviour with points that can be customizable. Yesterday I was refactoring alot of classes tha't didn't make use of the template pattern, but they all inherited from the same base-class. The base-class acted more like a common place for methods that all objects needed. Let me show you some code that I had before the refactoring. public class QuestionQuery : QueryBui... (more)
category: Web Dev | clicked: 0 | comment | | source: knysharp.blogspot.com
tags: Template Pattern, Design Pattern, C#
11
Shouts

Editing a variable length list, ASP.NET MVC 2-style « Steve Sanderson’s blog

published 1206 days, 19 hours, 32 minutes ago posted by ali62bali62b 1209 days, 15 hours, 3 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Friday, January 29, 2010 6:13:55 PM GMT
A while back I posted about a way of editing a list of items where the user can add or remove as many items as they want. Tim Scott later provided some helpers to make the code neater. Now, I find myself making use of this technique so often that I thought it would be worthwhile providing an update to show how you can do it even more easily with ASP.NET MVC 2 because of its strongly-typed and templated input helpers. Download the demo project or read on for details.Getting Started For this example I’m ... (more)
category: Web Dev | clicked: 1 | comment | | source: blog.stevensanderson.com
tags: ASP.NET MVC 2, jQuery
10
Shouts

Brad Wilson: Remote Validation with ASP.NET MVC 2

published 1207 days, 13 hours, 28 minutes ago posted by ali62bali62b 1209 days, 3 hours, 37 minutes ago
Sunday, January 31, 2010 7:48:30 PM GMT Saturday, January 30, 2010 5:39:40 AM GMT
One validation feature that we didn’t quite have time for in MVC 2’s new client-side validation support is called “remote validation”. Remote validation means we make a call back to our web site to ensure that a given value is valid. You might want this in cases where it’s not easy (or possible) to determine whether the value is valid on the client side, but you’d still like to give the user client-side feedback about the validity of the item. The canonical example is checking to see if a desired userna... (more)
category: Web Dev | clicked: 1 | comment | | source: bradwilson.typepad.com
tags: ASP.NET MVC, Validation, ASP.NET MVC 2
7
Shouts

Technical Jargon » Linq to Sql and ASP.NET MVC – DataContext Per Request

published 1206 days, 19 hours, 32 minutes ago posted by ali62bali62b 1207 days, 16 hours, 54 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Sunday, January 31, 2010 4:22:12 PM GMT
This is the first in a series of posts about using Linq to Sql with ASP.NET MVC. When using an ORM tool within a web application, it’s often common to scope a unit of work to the lifetime of an HTTP Request. If you’re using Linq to Sql and ASP.NET MVC, you can achieve this by using an Inversion of Control container in conjunction with an ActionFilter. For this example, I’m going to be using the StructureMap IoC container alongside a fictional “Blog” database. Firstly, you’ll need to configure St... (more)
category: Web Dev | clicked: 2 | comment | | source: www.jeremyskinner.co.uk
tags: ASP.NET MVC, Linq To SQL, Linq
6
Shouts

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

published 1206 days, 19 hours, 32 minutes ago posted by gpeipmangpeipman 1207 days, 19 hours, 45 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Sunday, January 31, 2010 1:31:25 PM GMT
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)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: IIS, ASP.NET
8
Shouts

ASP.NET MVC – Dynamically Changing The Master Page (Theming)

published 1206 days, 19 hours, 32 minutes ago posted by http://daniewat82.myopenid.com/http://daniewat82.myopenid.com/ 1207 days, 8 hours, 5 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 1:11:25 AM GMT
In the last two weeks I have seen this technique spoken about twice! It is a hot topic at the moment…. how do you have multiple themes for an ASP.NET MVC web application and then set the desired theme dynamically? There are multiple ways to implement this and in this post I will explain my preferred method. I like to have multiple master pages with each master page linking to its own set of assets and styles, then dynamically changing the master page used based on a route parameter. (more)
category: Web Dev | clicked: 3 | comment | | source: www.dotnetguy.co.uk
7
Shouts

.NET Framework 4.0: Comparing LINQ and PLINQ performance

published 1206 days, 19 hours, 32 minutes ago posted by gpeipmangpeipman 1207 days, 12 hours, 23 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Sunday, January 31, 2010 8:53:06 PM GMT
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)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: .Net 4.0, Plinq
8
Shouts

Check for unsaved data on your web forms using jQuery - NovoGeek.com

published 1206 days, 19 hours, 32 minutes ago posted by novogeeknovogeek 1207 days, 4 hours, 15 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 5:01:24 AM GMT
One of the most important Usability requirements in business applications is, to periodically inform the users when there is any unsaved data on their web pages. This article explains how to achieve the above requirement using jQuery dirty form plugin. (more)
category: Web Dev | clicked: 13 | 1 comment | | source: www.novogeek.com
tags: jQuery, jQuery Plugin
8
Shouts

MultiSelect Dropdown in ASP.NET « Ramani Sandeep's Blog

published 1206 days, 19 hours, 32 minutes ago posted by sandy060583sandy060583 1207 days, 1 hour, 31 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 7:45:06 AM GMT
MultiSelect Dropdown in ASP.NET Posted by Ramani Sandeep on January 29, 2010 In this article, I will show you a different way of doing a multi-select in an ASP.NET page. I will keep this article short and sweet so you can just use the code in your applications. We are going to put our CheckBoxList ASP.NET control inside an HTML div object. I have also added code to support changing the background color of the selected ... (more)
category: Web Dev | clicked: 10 | comment | | source: ramanisandeep.wordpress.com
7
Shouts

Random Acts of Coding: A Look at the New DotNetMigrations

published 1206 days, 19 hours, 32 minutes ago posted by JamesEggersJamesEggers 1207 days, 5 hours, 51 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 3:25:00 AM GMT
An overview of the latest release of DotNetMigrations, a database migration framework for .Net that utilizes MEF. (more)
category: Architecture | clicked: 1 | comment | | source: randomactsofcoding.blogspot.com
tags: database migrations, MEF, CodePlex
7
Shouts

Test Tool Checklists - TMAP NEXT DOWNLOADS

published 1206 days, 19 hours, 32 minutes ago posted by ClemensReijnenClemensReijnen 1207 days, 15 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 9:01:37 AM GMT
Some interesting downloads from my test expert colleagues… Beside you can find these documents on our www.TMap.NET site all these templates and checklists also have a place in the TMap Process Template for VS2010 [which can be found at TMap.Codeplex.com]. (more)
category: Agile | clicked: 0 | comment | | source: www.clemensreijnen.nl
7
Shouts

Silverlight 4 vs Flex 4: Data Validation - Alex van Beek

published 1206 days, 19 hours, 32 minutes ago posted by alexbalexb 1207 days, 12 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 9:04:34 AM GMT
In this post I’m again comparing two features of Silverlight and Flex, this time we’re going to take a look at how data validation is implemented on both platforms. This will be a very interesting comparison, since Flex and Silverlight take entirely different approaches. Which one is better? I can let you know in advance that one of the two is a bit broken. Read on to find out which one…… (more)
category: Metro | clicked: 0 | comment | | source: blogs.infosupport.com
tags: data, Silverlight 4, Data Validation, Data Binding, Flex 4
8
Shouts

Creating a SharePoint Visual Web Part using Visual Studio 2010 - Beth Massi

published 1208 days, 16 hours, 51 minutes ago posted by jantujantu 1210 days, 1 hour, 20 minutes ago
Saturday, January 30, 2010 4:25:23 PM GMT Friday, January 29, 2010 7:56:20 AM GMT
Last year we built a business application for order management for Northwind Traders on the Office and SharePoint platform using Visual Studio 2008 and Office & SharePoint 2007. Lately I’ve been writing articles that show how to upgrade it to Office & SharePoint 2010 using Visual Studio 2010. If you missed them:Migrating an Outlook Client to .NET Framework 4 in Visual Studio 2010Build WPF Data Controls for Out... (more)
category: Web Dev | clicked: 2 | comment | | source: blogs.msdn.com
tags: OBA, ADO.NET Data Services, article, VS2010, DevCenter, Sharepoint
7
Shouts

MVVM – It’s Not Kool-Aid* - Jesse Liberty

published 1208 days, 16 hours, 51 minutes ago posted by jantujantu 1209 days, 19 hours, 2 minutes ago
Saturday, January 30, 2010 4:25:23 PM GMT Friday, January 29, 2010 2:14:02 PM GMT
Okay, first, understand that I’m in the position of running through the streets yelling at folks “c’mere! ya’ gotta see this!” and what I’m pointing to is the incredible new invention of… a laptop computer. Something that is undeniably amazing and cool, but everyone else on my block has already got one.Second, and much worse, I’m about to show you how I used a “pattern” that you either have already embraced, or that you’ve been avoiding like the plague beca... (more)
category: Metro | clicked: 1 | comment | | source: blogs.silverlight.net
tags: Mini-Tutorial, HyperVideoProject, UI / UX, MVVM, Design Patterns
9
Shouts

Nice “Quick Hit” Videos about ASP.NET 4 and VS 2010 - Scott Guthrie

published 1208 days, 16 hours, 51 minutes ago posted by jantujantu 1210 days, 1 hour, 24 minutes ago
Saturday, January 30, 2010 4:25:23 PM GMT Friday, January 29, 2010 7:52:33 AM GMT
[In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu] I’ve been working on a series of blog posts the last few months that cover some of the new features coming with .NET 4 and VS 2010. Earlier today someone pointed me at some nice “quick hit” videos that have been published that also provide quick first looks at some of the new features coming with ASP.NET 4 and VS 2010.  These videos aren’t an exhaustive list of everything new ... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, .net 4, Video, Visual Studio, VS 2010, ASP .NET 4, ScottGu, ASP.NET
6
Shouts

DotNetRocks - Show #520 - Catching up with Juval Löwy

published 1208 days, 18 hours, 45 minutes ago posted by mithumithu 1210 days, 13 hours, 47 minutes ago
Saturday, January 30, 2010 2:31:42 PM GMT Thursday, January 28, 2010 7:29:02 PM GMT
Juval is back to talk to Carl and Richard. They get to the bottom of his "Every Object Should be a WCF Service" argument, and get his insights into the current state of .NET development. (more)
category: Podcast | clicked: 2 | comment | | source: www.dotnetrocks.com
tags: Juval, DotNetRocks, .NET, WCF Service, WCF
10
Shouts

Dynamic tabs using jQuery - why and how to create it

published 1210 days, 21 hours, 7 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1212 days, 39 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 8:37:10 AM GMT
This tutorial will show you how to use jQuery to create tabs that can be added and removed dynamically. Although the example looks bulletproof, there are some questions I will raise about how to use tabs and in which context should they be used in order to make them meaningful and usable. When we talk about tabs on web we usually think about tabs used for navigation. However, in this case I'd like to use them in a different context. I want to use them for showing different entities on t... (more)
category: Web Dev | clicked: 4 | comment | | source: www.jankoatwarpspeed.com
tags: Tutorials, jQuery
Previous 1 2 ... 5 6 7 8 9 10 11 12 13 14 ... 16 17 Next