Abdur123

Stories kicked by Abdur123

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

submitted by jantujantu(1045) 2 years, 5 months 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: 266

tags: another

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

submitted by jantujantu(1045) 2 years, 5 months 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: 279

tags: another

XNA Game Development (Decentralize)(progware.org)

submitted by iwannisiwannis(452) 2 years, 5 months ago

In the previous post, we have talked about drawing and moving 2D textures on the XNA window. In this post, we will explore the basic architecture that XNA uses in order to separate the game logic from the sprite logic. read more...

add a comment |category: |Views: 18

tags: another

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

submitted by mithumithu(570) 2 years, 5 months 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: 247

tags: another

What’s Jagged Array in .Net ?(blog-dotnethelp.blogspot.com)

submitted by manasco1manasco1(110) 2 years, 5 months ago

Its showing a demo about jagged array in .net read more...

add a comment |category: |Views: 10

tags: another

ASP.Net Test(ahmedmoosa.wordpress.com)

submitted by AhmedMoosaAhmedMoosa(20) 2 years, 5 months ago

ASP.Net .. this Test read more...

add a comment |category: |Views: 11

tags: another

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

submitted by mithumithu(570) 2 years, 5 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: 282

tags: another

3XH Silverlight HighScore and in game Achievement API is now available(apijunkie.com)

submitted by APIJunkieAPIJunkie(539) 2 years, 5 months ago

3XH system allows Silverlight game developers to work with high scores and user achievements without the hassle of building and maintaining the framework and the system to support them. The system was in closed beta testing for several weeks and is now available to Silverlight game developers to integrate into new and existing Silverlight games. read more...

add a comment |category: |Views: 8

tags: another

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

submitted by mosessaurmosessaur(5424) 2 years, 5 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: 251

tags: another

The Evolution of c#(blog-mstechnology.blogspot.com)

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

The Evolution of C# FROM 1 To 4 read more...

add a comment |category: |Views: 14

tags: another

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

submitted by mithumithu(570) 2 years, 6 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

Supporting multiple submit buttons on an ASP.NET MVC view(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 6 months ago

A while ago, I was asked for advice on how to support multiple submit buttons in an ASP.NET MVC application, preferably without using any JavaScript. The idea was that a form could contain more than one submit button issuing a form post to a different controller action. The above situation can be solved in many ways, one a bit cleaner than the other. For example, one could post the form back to one action method and determine which method should be called from that action method. Good solution, however: not standardized within a project and just not that maintainable… A better solution in this case was to create an ActionNameSelectorAttribute. read more...

add a comment |category: |Views: 836

tags: another

ajax with asp.net(webdevlopementhelp.blogspot.com)

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

Before starting with Ajax + asp.net Application you need to do follow read more...

add a comment |category: |Views: 11

tags: another

Retrieve only the first record from a LEFT JOIN(diaryofaninja.com)

submitted by wiredonewiredone(917) 2 years, 6 months ago

Recently I was working on a project where I had to return a simple list of products, and if they had images associated with them, return information about only one along with the product. Times like these, a simple left join or inner join just doesn’t cut it if there are more than one image/record per product. When this happens there is almost always a simple solution, so let’s take a look. read more...

add a comment |category: |Views: 28

tags: another

priting using C# (codingstuffsbykiran.blogspot.com)

submitted by kirankkirank(175) 2 years, 6 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(2072) 2 years, 6 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: 6

tags: another