kazimanzurrashid

Stories kicked by kazimanzurrashid

Cloudship: Membership Provider for the Cloud (dotnetslackers.com)

submitted by sonukapoorsonukapoor(1372) 3 years, 6 months ago

Planning to move to the Azure Cloud, but already tied to the Membership API? This article guides you to build a complete Membership provider library which can be leveraged by existing application to link to Microsoft’s cloud platform Windows Azure with no friction. read more...

1 comment |category: |Views: 142

tags: another

Partial Output Caching in ASP.NET MVC(blog.codeville.net)

submitted by LordLord(3737) 3 years, 7 months ago

Unfortunately, the [OutputCache] filter that ships with ASP.NET MVC is merely a thin wrapper around ASP.NET output caching. The MVC team have explained that they’re aware of the issues, but it’s very difficult to make ASP.NET output caching fit into MVC’s design, and they are focusing on other things first. We can quite easily create a new caching filter that captures actions’ output and uses ASP.NET’s data caching facility to store it for next time. This filter will fit properly into the MVC pipeline, not strangely bypassing authorization or other earlier filters (it will run at the right time in whatever ordered set of filters you’ve using). read more...

add a comment |category: |Views: 306

tags: another

Fluent hierarchical construction(lostechies.com)

submitted by rharikrharik(25) 3 years, 7 months ago

Building a hierarchy of objects doesn’t happen that often in code, but when it does, it can get pretty ugly. Most of the time, the hierarchy will come out of the database. Recently, we had a hierarchy that needed to be built straight in code. We had something like this going on: read more...

add a comment |category: |Views: 23

tags: another

LightSpeed 2.1 Released - includes new search API(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 7 months ago

LightSpeed 2.1, the performance minded object relational mapping framework, is fresh from the oven with new features like database independent full text search capabilities using Lucene.Net, Visual Studio integrated designer enhancements and a bundle of other new features. read more...

add a comment |category: |Views: 318

tags: another

ASP.net MVC goes Beta(microsoft.com)

submitted by phatboyslimphatboyslim(370) 3 years, 7 months ago

Hot on the heels of Silverlight, MVC is out of preview and into Beta today. read more...

3 comments |category: |Views: 461

tags: another

Combining independent widgets on ASP.NET MVC pages(blog.codeville.net)

submitted by desmonddesmond(2014) 3 years, 7 months ago

As great as ASP.NET MVC is, it doesn't have such an easy way to set up reusable controls or "widgets". Steven Sanderson explains a technique similar to MVC Contrib's "subcontrollers", but much simpler. read more...

add a comment |category: |Views: 927

tags: another

ASP.NET website Continuous Integration+Deployment using CruiseControl.(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 7 months ago

You can setup continuous integration and automated deployment for your web application using CruiseControl.NET, Subversion, MSBuild and Robocopy. I will show you how you can automatically build the entire solution, email build report to developers and QA, deploy latest code in IIS all using CruiseControl.NET every N minutes. read more...

4 comments |category: |Views: 415

tags: another

Best practices for creating websites in IIS 6(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 7 months ago

A list of steps that I always take while creating ASP.NET websites in IIS 6. It ensures better performance maintainability, and scalability of your application. read more...

3 comments |category: |Views: 517

tags: another

IServiceLocator a step toward IoC container / Service locator detente(codebetter.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 7 months ago

Today we launched an exciting project on CodePlex, namely the Common Service Locator library. What is it? It's a shared interface that applications and frameworks can reference in order to leverage IoC containers / service location mechanisms without taking hard dependencies. read more...

1 comment |category: |Views: 227

tags: another

Separate Assemblies != Loose Coupling(codebetter.com)

submitted by scottcreynoldsscottcreynolds(195) 3 years, 7 months ago

read and learn read more...

add a comment |category: |Views: 403

tags: another

Unit Testing Coming to a Workflow Near You(michaelckennedy.net)

submitted by mkennedy66996693mkennedy66996693(480) 3 years, 7 months ago

If you've been working with Windows Workflow, you'll find it has some cool features for orchestration, long running operations, state machines, etc. However you won't find very much support for Test Driven Development (TDD) or unit testing in general. In fact the architecture that makes Windows Workflow powerful (strict separation of workflow, activities, and the host for example) really gets in the way of unit test. read more...

add a comment |category: |Views: 16

tags: another

Custom jQuery Selector for ASP.NET WebForms(john-sheehan.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 7 months ago

My quest for a better way to select ASP.NET auto-generated IDs with jQuery. read more...

1 comment |category: |Views: 497

tags: another

Form validation with ASP.NET MVC preview 5(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 8 months ago

In earlier ASP.NET MVC previews, form validation was something that should be implemented "by hand". Since the new ASP.NET MVC preview 5, form validation has become more handy. Let me show you how you can add validation in such a ridiculously easy manner. read more...

1 comment |category: |Views: 369

tags: another

Building an ASP.NET MVC sitemap provider with security trimming(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 8 months ago

If you have been using the ASP.NET MVC framework, you possibly have been searching for something like the classic ASP.NET sitemap. After you've played with it, you even found it useful! But not really flexible and easy to map to routes and controllers. In this post, Maarten describes how to build a custom sitemap provider which uses ASP.NET MVC route data and AuthorizeAttribute to render MCS sitemap data with security trimming enabled! read more...

add a comment |category: |Views: 1468

tags: another

IPhone UI with Silverlight 2 beta 2(dotnetslackers.com)

submitted by faisalfaisal(1345) 3 years, 8 months ago

It’s been quite a while since Microsoft has introduced the Beta 2 release of Silverlight. There are plenty of Silverlight enthusiasts who are passionate about this cross-platform browser application programming. They’ve already given us some useful and eye catching applications. Some applications have given us the feel that this is the future of web programming. I’m a great follower of WPF. In fact I’ve always been and will be. Silverlight has many things in common with WPF but also many different things missing, being a subset of WPF. For the last couple of days I was thinking about creating some eye-catching, innovative user interface but something common, something people have already seen. The idea was converting an existing user interface which was written using another platform, and of course using WPF. read more...

add a comment |category: |Views: 465

tags: another

NHibernate 2.0 is out(ayende.com)

submitted by raffaeuraffaeu(150) 3 years, 9 months ago

Directly from the blog of Ayende, NHibernate 2.0 is out!! read more...

add a comment |category: |Views: 406

tags: another