Posts Tagged ASP.NET
Robotics Studio 2008 Workshop @ Teqnix
Posted by Kinnar Shah in Mix-Up on February 24, 2010
Today, I had a very interesting session on Robotics studio 2008 at the annual techfest of LDCE, Teqnix 2010.

You, the diverse crowd coupled with enthusiasm made it an amazing experience.
Also embedded below is the presentation itself (as i promised…
)
Video | Validation in ASP.NET MVC using IDataerrorinfo
Posted by Kinnar Shah in .NET, ASP.NET MVC, Technology on January 25, 2010
IoC and Dependency Injection With “Unity Application Blocks”
Posted by Kinnar Shah in .NET, ASP.NET MVC, Technology on January 15, 2010
Modern business applications consist of custom business objects and components that perform specific tasks or generic tasks within the application, in addition to components that individually address crosscutting concerns such as logging, authentication, authorization, caching, and exception handling.
The key to successfully building these types of applications is to achieve a decoupled or very loosely coupled design. Loosely coupled applications are more flexible and easier to maintain. They are also easier to test during development. You can mock up shims (lightweight mock implementations) of objects that have strong concrete dependencies, such as database connections, network connections, enterprise resource planning (ERP) connections, and rich user interface components.
Dependency injection is a prime technique for building loosely coupled applications. It provides ways to handle the dependencies between objects. For example, an object that processes customer information may depend on other objects that access the data store, validate the information, and check that the user is authorized to perform updates. Dependency injection techniques can ensure that the customer class correctly instantiates and populates all these objects, especially where the dependencies may be abstract.
Read More At MSDN