rishitraykhanna

Stories kicked by friends of rishitraykhanna

Web Asset Enhancements in Telerik Extensions for ASP.NET MVC - Kazi(weblogs.asp.net)

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

In the recent release, there has been few enhancements in the Web Asset Management. One of the new thing that we introduced which was actually requested by the community is Shared Web Asset. In this post, I will show you, how to use it in your ASP.NET MVC... read more...

add a comment |category: |Views: 160

tags: another

Developers on Better Design, User Experience and Why It Matters(pdcbof.com)

submitted by futileboyfutileboy(20) 2 years, 3 months ago

he PDC BOF team is pleased to announce another Birds-of-a-Feather session: Developers on Better Design, User Experience and Why It Matters read more...

1 comment |category: |Views: 10

tags: another

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

submitted by iftekharahmedamitiftekharahmedamit(530) 2 years, 6 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) 2 years, 11 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: 264

tags: another

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

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

Five methods converting rows to columns read more...

add a comment |category: |Views: 1441

tags: another

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

submitted by jantujantu(1045) 2 years, 11 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) 2 years, 11 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: 406

tags: another

Styling ListBox And Animating ListBoxItem In Silverlight 2(blogs.windowsclient.net)

submitted by faisalfaisal(1345) 2 years, 11 months ago

In this post I’ll try to show you how to animate ListBoxItem’s in Silverlight 2 using Expression Blend 2 SP1. Before going deep into this demonstration of animating ListBoxItems, here’s a little about ListBox. It is actually an ItemsControl which can contain a collection of items. This contents can be set by using it’s Items and ItemSource property and of course it contains a list of selectable items. read more...

add a comment |category: |Views: 125

tags: another

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

submitted by iftekharahmedamitiftekharahmedamit(530) 2 years, 11 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: 229

tags: another

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

submitted by iftekharahmedamitiftekharahmedamit(530) 2 years, 11 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: 562

tags: another

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

submitted by iftekharahmedamitiftekharahmedamit(530) 2 years, 11 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: 256

tags: another

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

submitted by iftekharahmedamitiftekharahmedamit(530) 3 years 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 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 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 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(4560) 3 years, 1 month 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: 586

tags: another