magz

Stories kicked by magz

Large or asynchronous file uploads in ASP.NET MVC(dimebrain.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

The challenge of uploading large files in ASP.NET through HTTP is not a new challenge. In addition to handling large files, users often request an experience that shows the progress of an upload as it occurs. When you have either or both of these requirements, or if you simply need direct control of a stream of file data uploaded from a browser, you invariably hit the wall. I set about solving the problem in an ASP.NET MVC-specific way. read more...

add a comment |category: |Views: 866

tags: another

Dependency Injection For Dummies(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 6 months ago

The goal of this series is to introduce programming patterns and practices to developers who have little to no familiarity with them. This series does not intend to dive into the intricacies of each pattern / practice, but to give a brief overview that will (hopefully) inspire developers to learn more about them. read more...

add a comment |category: |Views: 617

tags: another

CSS transparency in all the browsers(subodhpatel.co.cc)

submitted by subodhpatelsubodhpatel(120) 2 years, 6 months ago

There are many cross-browser issues and transparency is one of the wierd issues among them.All the browsers treat transparency in a different way. Here is the possible solution for the IE6 PNG background image transparency fix. read more...

add a comment |category: |Views: 388

tags: another

NHibernate and Execution Plans(objectreference.net)

submitted by Vort3XVort3X(1335) 2 years, 7 months ago

Lately we have been investigating ORM’s (Object Relational Mapping) frameworks for use on a large enterprise level website which we been given the rare opportunity to rebuild from the ground up in Microsoft MVC. We decided to go ahead with NHibernate until stumbled across a major issue causing queries run by NHibernate not re-using SQL Server execution plans. read more...

add a comment |category: |Views: 275

tags: another

Validating your XML Documents w/ XSD Schema(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 7 months ago

Taking a look at how to perform XML message validation by using an XSD document schema. By creating an XSD schema you can simply and easily validate the structure and the data content of your document which will ensure your message is well formed. read more...

add a comment |category: |Views: 158

tags: another

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

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

The Builder Pattern falls under the category of the Creational Patterns as it controls the instantiation of a class. This pattern is suitable in scenarios in which an object is made up several parts and the constituent parts need to be created in the same order using an algorithm. A real world example is in making a pizza. A pizza is made up of several parts (the crust, cheese and the toppings) that are constructed using an algorithm (bake the crust, add cheese and add the toppings). read more...

add a comment |category: |Views: 410

tags: another

Learning new Programmming Languages and Technologies(objectreference.net)

submitted by Vort3XVort3X(1335) 2 years, 11 months ago

Recently, I’ve read article after article about how part of being a good software developer is about being open to new technologies, and to “learn new things” – and I’d be foolish not to agree. However... read more...

add a comment |category: |Views: 460

tags: another

25+ Best ASP.NET MVC Tutorials and Articles(ajaxline.com)

submitted by Spider84Spider84(675) 3 years ago

In this article we collected best tutorials and articles about ASP.NET MVC. read more...

1 comment |category: |Views: 632

tags: another

ASP.NET MVC Domain Routing(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years ago

Ever since the release of ASP.NET MVC and its routing engine (System.Web.Routing), Microsoft has been trying to convince us that you have full control over your URL and routing. This is true to a certain extent: as long as it’s related to your application path, everything works out nicely. If you need to take care of data tokens in your (sub)domain, you’re screwed by default. read more...

add a comment |category: |Views: 421

tags: another

22 amazing JQuery - Modal - Plugins(blogrammierer.de)

submitted by blogrammiererblogrammierer(265) 3 years, 1 month ago

A collection of 22 amazing JQuery - Modal - Window - Plugins read more...

add a comment |category: |Views: 775

tags: another

10 Best Libraries for generating PDF Files(ajaxline.com)

submitted by Spider84Spider84(675) 3 years, 1 month ago

Today we are presenting collection of 10 best libraries for generating PDF files. read more...

add a comment |category: |Views: 686

tags: another

Free ASP.NET MVC eBook Tutorial - ScottGu(weblogs.asp.net)

submitted by beckelmwbeckelmw(2755) 3 years, 2 months ago

There has been a lot of excitement in the community about the new ASP.NET MVC framework that is about to ship (literally any day now – announcement coming soon). As with anything new, people are also asking for more tutorials/samples/documentation that cover how to get started and build applications with it. Over the last few months I’ve been helping to contribute to an ASP.NET MVC book that Scott Hanselman, Rob Conery, and Phil Haack have been writing for Wrox. The book is now in production, and will be available to buy in stores soon read more...

2 comments |category: |Views: 802

tags: another

12+ open source projects for .NET you probably didn’t know about.(blog.webdistortion.com)

submitted by squiggssquiggs(585) 3 years, 2 months ago

Here’s a few of the better .NET open source projects which are making a difference to .NET developers worldwide, and it just shows that the open source .NET community is alive and well. read more...

1 comment |category: |Views: 1932

tags: another

23 amazing JQuery Photo/Gallery Plugins(blogrammierer.de)

submitted by blogrammiererblogrammierer(265) 3 years, 2 months ago

A collection of 23 JQuery Plugins to prepare your site for the use of photos. read more...

2 comments |category: |Views: 7449

tags: another

15 Most Interesting jQuery Tutorials(ajaxline.com)

submitted by Spider84Spider84(675) 3 years, 2 months ago

This time we collected the most interesting jQuery tutorials. read more...

1 comment |category: |Views: 743

tags: another

Construct a comma delimited list from table column with SQL(objectreference.net)

submitted by magzmagz(80) 3 years, 4 months ago

How many times have you had to create a comma delimited list from a table column? Do you ever remember how to do it? I don’t. Here is a little snippet I find useful read more...

add a comment |category: |Views: 321

tags: another