abdurzamman

Stories kicked by abdurzamman

Introducing Fluent MetadataProvider for ASP.NET MVC - Kazi(weblogs.asp.net)

submitted by jantujantu(1045) 2 years, 1 month ago

I have just included a Fluent Metadata provider in my open source System.Web.Mvc.Extensibility project. Currently it contains all of the features of the Built-in DataAnnotations Metadata provider that comes with the ASP.NET MVC 2 framework. Consider it as a holiday special from me for the ASP.NET MVC community :-). The main reason I am no... read more...

5 comments |category: |Views: 262

tags: another

More on Fluent MetadataProvider for ASP.NET MVC - Kazi Manzur Rashid(weblogs.asp.net)

submitted by jantujantu(1045) 2 years, 1 month ago

In my last post, one of the thing you complained about the maintaining view model meta data configuration in two separate place and I admit this becomes a pain when you skim through the codes. I have changed the implementation, so now you will be able to configure the meta data very much like the Fluent NHibernate or Entity Framework 4.0 Code ... read more...

8 comments |category: |Views: 278

tags: another

Meet my new ASP.NET MVC Extension - System.Web.Mvc-Kazi Manzur Rashid(weblogs.asp.net)

submitted by mithumithu(570) 2 years, 1 month ago

After hearing Phil Haack and Scott Hanselman in their latest podcast and PDC session I decided to give a good look at the MvcTrubine project in this weekend. I totally agree the intend of this project, let your favorite IoC to rule everywhere, but I do not think it has been implemented in the correct way. There are three important design flaws that I found in MvcTurbine: Generic Component Registration API Rather than allowing you to use your preferred IoC registration features, it prefers to use its own generic syntax for component registration, which is simply wrong. In real application, we need more support from our IoC such as lifetime management, auto wiring, modularity like (Ninject/Autfac Modules, StructureMap Registry) etc. In case of this generic API we have to throw away the features of these IoCs. Missing Common Service Locator I think the Common Service Locator(CSL) has become the standard to abstract the underlying IoC from your application code and all the popular IoCs in .NET world has an adapter for CSL. But rather than using/extending it, it has its own version of service locator. Limited support for Action Filter injection It uses a host kinda Attribute to inject the dependencies into the actual action filter attribute and this host is not capable of passing the attribute specific values to the actual attribute and even if this feature is implemented in the future it will be based upon the string based property name which would work on top of reflection. Now, lets see how my new extension solves the above issues and how easily you can start plugging it in your application. First lets take a quick look of the project structure of this extension. read more...

4 comments |category: |Views: 246

tags: another

Data Types in Sql Server 2008(hemantg.blogspot.com)

submitted by hemantghemantg(145) 2 years, 1 month ago

Sharing basic datatype info read more...

add a comment |category: |Views: 2

tags: another

Mindscape LightSpeed 3.0 – Advocating a Commercial ORM(ericswann.org)

submitted by ericswannericswann(145) 2 years, 1 month ago

Compares the features of Mindscape's LightSpeed 3.0 ORM with those of LINQ to SQL and NHibernate. read more...

5 comments |category: |Views: 427

tags: another

Mindscape WPF Themes released(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 2 years, 2 months ago

Mindscape have released a suite of WPF themes to help developers deliver attractive applications faster than ever before. All source code is included so that UI tweaks can be made to create your own style or leave them as they are to have an Office 2007 style or Expression Blend look and feel. read more...

5 comments |category: |Views: 712

tags: another

Telerik ASP.NET MVC Grid Preview (Take 2) - Kazi Manzur Rashid(weblogs.asp.net)

submitted by mithumithu(570) 2 years, 2 months ago

In the last post, I have shown you how you can extend the ASP.NET MVC2 templates and some of the issues of the current beta. In this post, I will show you how we are taking advantages of the new DisplayFor/EditorFor in our MVC Grid. One of the benefit of using those statements in our grid is, you can host any kind of component in an individual cell, obviously the first two components will be the DateTimePicker and NumericTextBox that we are going to include in our next release. One of the most requested feature since our last release is the inline editing support in the grid. In this, I will show you the inline editing of product of my last post, but this time with our Grid. The Grid should support both server and ajax editing, but in this example we will only discuss the server..... read more...

1 comment |category: |Views: 279

tags: another

Silverlight 4 and ESRI ArcGIS Server - COM interoperability(eriknyberg.net)

submitted by erik_nybergerik_nyberg(20) 2 years, 2 months ago

One of the most interesting new feature in Silverlight 4 is the COM interoperability functionality. This blog post shows how this can be used with ESRI software. read more...

add a comment |category: |Views: 32

tags: another

Implementing Delete Confirmation Dialog in the ListView (ASP.Net) - 2(weblogs.asp.net)

submitted by yaneshtyagiyaneshtyagi(175) 2 years, 2 months ago

This article describes how to implement delete confirmation dialog box in ListView control of asp.net. The author also described using resource file to display delete confirmation message in different language. A link to download the code (complete VS project) is also provided. read more...

add a comment |category: |Views: 20

tags: another

KiGG Design And Architecture – Part 2 Project Structure(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 2 years, 2 months ago

In part 1 I talked about KiGG high level architecture. In this part I am going to talk about KiGG project structure and summarize the purpose of each project in the solution. I’ll not go into deep details of each project. I’ll save that for some other posts, just be patient with me and stay tuned. read more...

add a comment |category: |Views: 250

tags: another

SQL Server Soundex Functions(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 2 years, 2 months ago

The forty-ninth part of the SQL Server Programming Fundamentals tutorial describes the Soundex functions that are provided by Transact-SQL (T-SQL). These functions allow strings to be compared according to their pronunciation by English speakers. read more...

1 comment |category: |Views: 92

tags: another

Automatically attaching VHD files in Windows 7 and Windows 2008(coding.infoconex.com)

submitted by infoconexinfoconex(80) 2 years, 2 months ago

If you have played with the new VHD feature in windows 7 or windows 2008 then you know just how cool of a feature this is. However the problem is that when you reboot your machine you find that when it comes back up all your VHD files are no longer attached? Here is what I did to get around the issue. read more...

add a comment |category: |Views: 12

tags: another

Extending ASP.NET MVC 2 Templates - Kazi Manzur Rashid(weblogs.asp.net)

submitted by mithumithu(570) 2 years, 2 months ago

One of the new features of ASP.NET MVC 2 is Templates (DisplayFor/EditorFor), Brad Wilson did a series of post which explains how the templates works, Please read it before you continue this post. Although he did an excellent job explaining the inner-details, but one thing you will notice that the object model in those examples are traversed from top to bottom or parent to child which is good for explaining the internal, but in our real application we need a bit more support. Lets take a trivial example, you are creating a create/edit screen for your Product, where each product has a associated Category and you want to show this category in a DropDownList, say we have a Product class like the.... read more...

add a comment |category: |Views: 207

tags: another

Visual Studio 2010 - Highlighting References (blog-mstechnology.blogspot.com)

submitted by babu.mstechbabu.mstech(285) 2 years, 2 months ago

This blog post explaining about the new feature "Highlighting References" introduced in VS 2010 read more...

add a comment |category: |Views: 30

tags: another

priting using C# (codingstuffsbykiran.blogspot.com)

submitted by kirankkirank(175) 2 years, 2 months ago

printing is very easy case in all the task ,but when using ASP.NET, printing of web form is not that easy. if we're building a UI we usually do so by painting controls on the screen and allowing whoever developed them to worry about the whys and wherefores about how that control should look. read more...

add a comment |category: |Views: 3

tags: another

Exploring Silverlight behaviors: look Ma, no code!(silverlightshow.net)

submitted by KMillerrKMillerr(1907) 2 years, 2 months ago

Andrej Tozon has created this great Halloween scary sound player with the help of Silverlight behaviors. Check this cool article, it really deserves your attention. read more...

add a comment |category: |Views: 5

tags: another