jessenaiman

Stories kicked by jessenaiman

Simple Image SlideShow using jQuery (www.devcurry.com)

submitted by oscaroscar(229) 2 years, 2 months ago

A simple script to do a Image SlideShow read more...

add a comment |category: |Views: 395

tags: another

Sending HTML emails with ASP.NET MVC2 and MVCContrib(codevanced.net)

submitted by andreisterandreister(140) 2 years, 2 months ago

1. How to send HTML emails with MVCContrib and its EmailTemplateService 2. How to test email sender without SMTP server 3. How to use Ninject with MVC controllers read more...

add a comment |category: |Views: 153

tags: another

Handling image uploads with Asp.Net Mvc (mattias-jakobsson.net)

submitted by JakobssonJakobsson(485) 2 years, 6 months ago

A very common taks in web development is uploading images. This isn't realy a hard task in it self, but it can be pretty frustrating to write the same code over and over again even if its only a few lines. read more...

add a comment |category: |Views: 316

tags: another

Design Patterns – Using the Adapter Pattern in C#(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 9 months ago

An Adapter pattern also known as the “Wrapper pattern” makes it easier to implement solutions that interface with multiple systems. There are situations in which a system we are working needs to interact with another system, third party API or a legacy component. This interaction becomes challenging if the systems are not compatible with each other. There is no standard way to implement a particular system. How do we make it easy to tie all the incompatible systems together? With the help of the Adapter pattern. read more...

add a comment |category: |Views: 544

tags: another

Subsonic 3 released(web2asp.net)

submitted by sedgeysedgey(1728) 2 years, 10 months ago

Just read Rob Conery’s Blog and saw that Subsonic 3 is now available for download. For those unfamiliar with Subsonic it really is the ONLY no BS ORM out there, in fact it is so easy to get up and running that it is easy to forget that you ever set it up in the first place. The whole Subsonic ethic is to remove the hoops that other ORM’s have you jump through and essentially to get you home earlier. read more...

add a comment |category: |Views: 443

tags: another

Profiling the Memory Usage of a .NET Application (simple-talk.com)

submitted by redgateredgate(155) 2 years, 10 months ago

Automatic memory management in .NET makes development a lot easier; however, it's still easy to introduce memory leaks into your application. For example, in a complex application, it's easy to forget to unregister event handlers, and these are notorious for holding on to objects which you don't need to keep in memory any more. This typically leads to an increase in memory usage which, if it remains unchecked and unresolved, can lead to your application exhibiting poor performance, or even running out of memory and crashing. This is where a memory profiler becomes necessary. read more...

add a comment |category: |Views: 434

tags: another

Handy Regular Expressions - Zip/Postal code validation for US and Cana(software-wikipedia.blogspot.com)

submitted by kzvikzvi1kzvikzvi1(80) 2 years, 11 months ago

Handy Regular Expression Zip/Postal code validation for US and Canada in the same expression for common form validation. read more...

2 comments |category: |Views: 444

tags: another

Abandon ASP.NET WebForms!(itmeze.com)

submitted by michalzygulamichalzygula(100) 2 years, 11 months ago

Interesting experiance with classic web forms.... read more...

9 comments |category: |Views: 899

tags: another

The “Sim City” effect(broloco.blogspot.com)

submitted by wellfan77wellfan77(175) 2 years, 11 months ago

What happens when you turn your back on a software development project. read more...

add a comment |category: |Views: 858

tags: another

SubSonic 3.0: ActiveRecord(blog.wekeroad.com)

submitted by luizbonluizbon(80) 2 years, 11 months ago

Google’s project site is down for a while and I have some perf tests running in the background so I thought it might be time to crank out a few more “preview” posts of SubSonic 3.0. This one’s about ActiveRecord – one of my favorite patterns for its ease of use and versatility. read more...

add a comment |category: |Views: 348

tags: another

Opinionated Input Builders for ASP.Net MVC using partials (lostechies.com)

submitted by dziedriusdziedrius(55) 2 years, 11 months ago

The goal of these control helpers is to reward you for developing MVC with the Model first. Yeah there is a reason that Model View Controller starts with the Model. Using the strongly typed views in the aspx view engine we can carry the type down to the control helpers with intellisense and then build html input control based on conventions for rendering specific CLR types to specific HTML output. read more...

add a comment |category: |Views: 240

tags: another

SubSonic 3.0: The SimpleRepository « Rob Conery(blog.wekeroad.com)

submitted by javeryjavery(5523) 2 years, 11 months ago

Rob is adding a very nice simple repository to SubSonic 3.0 that will give SubSonic top-notch POCO support and very slick migrations. Mapping files be damned! read more...

add a comment |category: |Views: 397

tags: another

Regular Expression for Email Address validation in C# | TechArtifact(techartifact.com)

submitted by ankygoyalankygoyal(519) 2 years, 11 months ago

The task at hand is to validate the Textbox in asp.net for a valid email address. Read on for to the point solution read more...

5 comments |category: |Views: 323

tags: another

Ten C# Keywords That You Shouldn’t Be Using(codethinked.com)

submitted by john2021john2021(600) 3 years, 1 month ago

Overview of some not-so-common keywords and reasons to avoid them...or understand what the implications are if we use them. read more...

1 comment |category: |Views: 1091

tags: another

ASP.NET MVC source code under MS-PL(weblogs.asp.net)

submitted by atifazizatifaziz(1000) 3 years, 1 month ago

Scott Guthrie announces that the ASP.NET MVC source code is being released under the Microsoft Public License (MS-PL). MS-PL is an OSI-approved open source license. The MS-PL contains no platform restrictions and provides broad rights to modify and redistribute the source code. read more...

1 comment |category: |Views: 76

tags: another

ASP.NET MVC Best Practices (Part 1) - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by mithumithu(570) 3 years, 1 month ago

In this post, I will share some of the best practices/guideline in developing ASP.NET MVC applications which I have learned in the hard way. I will not tell you to use DI or Unit Test instead I will assume you are already doing it and you prefer craftsmanship over anything. read more...

add a comment |category: |Views: 386

tags: another