iftekhar

Stories kicked by friends of iftekhar

Announcing a new product line - Telerik Extensions for ASP.NET MVC(blogs.telerik.com)

submitted by iftekharahmedamitiftekharahmedamit(530) 2 years, 9 months ago

It is a great pleasure to announce our new product line - Telerik Extensions for ASP.NET MVC. As the name suggest we are building a new UI component suite targeting the ASP.NET MVC framework. The new product line will not be based on RadControls for ASP.NET Ajax nor will it depend on ASP.NET Ajax or ASP.NET WebForms. No page lifecycle, ScriptManager dependency, viewstat... read more...

add a comment |category: |Views: 5

tags: another

Unit Testable HttpModule and HttpHandler - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 2 months ago

With the new System.Web.Abstraction namespace we can now easily write unit testable HttpModule and HttpHandler. In this post, I will show you how to write unit testable HttpModule and HttpHandler. Prior the release of System.Web.Abstraction the problem with unit testing of these web infrastructural items is HttpContext, it is sealed, no way to mock it with Rhino or Moq. The only option is to create the wrapper objects of these non-mockable objects but it has a very long tail like HttpRequest, HttpResponse, HttpSessionState, HttpServerUtility etc etc. And this is the exact thing that the System.Web.Abstraction provides, all wrappers around the non-mockable objects of HttpContext. But still, both the HttpModule and HttpHandler depends upon the original HttpContext which I hope will change in ASP.NET 4.0. till then we need to create a super layer for making it Unit Testable. read more...

add a comment |category: |Views: 274

tags: another

SQL Server Five methods converting rows to columns(sqlserveradvisor.blogspot.com)

submitted by sqlserveradvisorsqlserveradvisor(385) 3 years, 2 months ago

Five methods converting rows to columns read more...

add a comment |category: |Views: 1526

tags: another

The Open Source Projects on ASP.NET MVC - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by jantujantu(1045) 3 years, 2 months ago

Last night the forehead four head has released the 1st chapter of their upcoming Wrox book along with a sample project NerdDinner and I think this is the best application to check if anyone is trying to lean the new ASP.NET MVC framework. And this is the list of currently available Open Source Projects developed in ASP.NET MVC. I am ordering it based ... read more...

add a comment |category: |Views: 371

tags: another

Use Event Aggregator to make your application more extensible(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 2 months ago

Recently, in KiGG/DotNetShoutout we have integrated Twitter, nothing complex, very basic thing like when a story is submitted or appears in the front page it will broadcast in Twitter and like our feed it will post the short url of the original story (Cant resist to do some shameless marketing for DotNetShoutout). Since it is a new requirement, initially I have modified the StoryService constructor to include the twitter client as a new argument and use it after the story is added in the database, the code is something like the following:... read more...

1 comment |category: |Views: 412

tags: another

Unit Testable Configuration Manager - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 2 months ago

If you are a TDD purist, you should know that accessing file system in Unit Test is violating the rule. But in our application, our infrastructural code often requires to access the configuration values form web.config/app.config. In this post, I will show you how can create a simple wrapper class which you can use in your unit tests without hitting the file ... read more...

1 comment |category: |Views: 239

tags: another

Implementing UnitOfWork Pattern In Linq To SQL Application(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 3 months ago

Implementing UnitOfWork Pattern In Linq To SQL Application In my previous post, I have shown how to create Linq to Sql Repository which will have the maximum code coverage, In this post, I will show a simple UnitOfWork class which will flash the changes back to your database. I will be again use my ongoing UnityCommonServiceLocatorMVC project. Lets assume that in your ASP.NET MVC application you have a method in your controller which will add a category and its associate product in the Northwind database. read more...

add a comment |category: |Views: 566

tags: another

ASP.NET MVC, Unity and Common Service Locator(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 3 months ago

In this post, I will show you how can you extend Microsoft Patterns & Practices Unity Application Block and use it in ASP.NET MVC in conjunction with Patterns & Practices Common Service Locator. Extending Unity Unity is a dependency injection container from MS Patterns & Practices team. But unlike the other containers it does not have any PerWebRequest... read more...

add a comment |category: |Views: 264

tags: another

Domain Model (Developing KiGG v2.0 Part 1) - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 3 months ago

As mention in my previous post that I will be discussing the technical side of **KiGG**. So this is the beginning and it will be a multi-part series. I will try to put as much detail as possible, do let me know if I missed anything. Just for a recap, KiGG is Web 2.0 style social news application where I am trying to exercise some of the best practice like TDD, DDD, SOLID etc with Microsoft supported tooling. If you want to see it in action just visit http://dotnetshoutout.com . KiGG is already a fully functional application, but here I am starting from scratch, so the actual code might not look the same with following but it will show you how it is evolved as I am going to post more on it over the time. read more...

add a comment |category: |Views: 268

tags: another

Domain Model (Developing KiGG v2.0 Part 1) - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years, 3 months ago

As mention in my previous post that I will be discussing the technical side of **KiGG**. So this is the beginning and it will be a multi-part series. I will try to put as much detail as possible, do let me know if I missed anything. Just for a recap, KiGG is Web 2.0 style social news application where I am trying to exercise some of the best practice like TDD, DDD, SOLID etc with Microsoft supported tooling. If you want to see it in action just visit http://dotnetshoutout.com . KiGG is already a fully functional application, but here I am starting from scratch, so the actual code might not look the same with following but it will show you how it is evolved as I am going to post more on it over the time. read more...

add a comment |category: |Views: 268

tags: another

Introducing DotNetShoutout.com (weblogs.asp.net)

submitted by jantujantu(1045) 3 years, 4 months ago

Kazi announces the public beta of DotNetShoutout.com read more...

5 comments |category: |Views: 724

tags: another

Kigg – A great example of ASP.NET MVC(weblogs.asp.net)

submitted by sharplifesharplife(4570) 3 years, 4 months ago

Kigg which is a clone of Digg has been one the best starter kits for ASP.NET. Now Kigg guys udated it using ASP.NET MVC and of course it can be a good example for ASP.NET MVC learners. read more...

add a comment |category: |Views: 588

tags: another

Microsoft Office InfoPath 2007 Managed Object Model - Poster(amitbd.com)

submitted by amconlineamconline(100) 3 years, 7 months ago

Microsoft Office InfoPath 2007 Managed Object Model - Poster Files in JPG & PDF Format. File Download: infopathobjectmodelmap.pdf (Note: Adobe Acrobat Reader is required to view the file.) read more...

add a comment |category: |Views: 38

tags: another

jQuery and Microsoft(weblogs.asp.net)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

ScottGu announce that Microsoft will be shipping jQuery with Visual Studio going forward. We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch. The files will continue to use and ship under the existing jQuery MIT license. read more...

1 comment |category: |Views: 380

tags: another

jQuery, Microsoft, and Nokia(jquery.com)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

news today: Both Microsoft and Nokia are taking the major step of adopting jQuery as part of their official application development platform. Not only will they be using it for their corporate development but they will be providing it as a core piece of their platform for developers to build with. read more...

3 comments |category: |Views: 177

tags: another

Windows Live Wave 3 Beta Programs Released(amitbd.com)

submitted by amconlineamconline(100) 3 years, 8 months ago

Windows Live Wave 3 Beta Programs Released Wave 3 is the new release of the Windows Live Suite of programs, these beta programs are available from download.live.com. The program list includes Messenger Beta, Movie Maker Beta, Live Mail Beta, Windows Live Writer Beta, Photo Gallery Beta and others. These are packaged with a common installer, you can choose which programs you want to install from the list, if you have already have some this programs installed they will get updated. read more...

add a comment |category: |Views: 14

tags: another