Aaronontheweb

Stories kicked by Aaronontheweb

How to Securely Verify and Validate Image Uploads in ASP.NET and ASP.N(www.aaronstannard.com)

submitted by AarononthewebAaronontheweb(1140) 11 months, 1 day ago

How do you verify that content that your users are uploading to your ASP.NET site are just harmless images and not something malicious? Use GDI+ to validate that images are images and nothing else! read more...

add a comment |category: |Views: 23

tags: another

Getting Started with AppHarbor – Heroku for .NET(www.aaronstannard.com)

submitted by runesoerensenrunesoerensen(30) 1 year, 4 months ago

Nice guide to setting up an ASP.NET MVC3 app on Appharbor (http://appharbor.com) read more...

add a comment |category: |Views: 112

tags: another

Creating Missing Index and Improve SQL Server Performance(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 4 months ago

A Quick Script which you can right away run and improve SQL Server Performance. read more...

add a comment |category: |Views: 516

tags: another

Building an HTML5 App with ASP.NET(stephenwalther.com)

submitted by Stephen.WaltherStephen.Walther(180) 1 year, 4 months ago

Describes how to create a JavaScript Reference by taking advantage of HTML5 features such as local storage, and offline manifests. Also demonstrates how to build server-side JavaScript unit tests for an Ajax application. read more...

1 comment |category: |Views: 661

tags: another

How to Use Remote Validation in ASP.NET MVC3(www.aaronstannard.com)

submitted by AarononthewebAaronontheweb(1140) 1 year, 5 months ago

Remote validation is brand new as of ASP.NET MVC3 RC, and it's a powerful feature for remotely validating user input against your data repositories in real-time, and it doesn't require developers to program ANY jQuery whatsoever. read more...

add a comment |category: |Views: 31

tags: another

10 Harder-to-find-than-they-should-be Answers for Silverlight Beginner(www.aaronstannard.com)

submitted by AarononthewebAaronontheweb(1140) 1 year, 9 months ago

In the process of learning Silverlight 4, the most recent version of Silverlight for which few guides or books exist, I’ve built a list of the top ten answers I wish were easier to find when I started learning Silverlight. I was unable to quickly find answers on these subjects perhaps because I was using the wrong lexicon or perhaps these are things that professional Silverlight / WPF developers consider to be too “obvious” to be worthy of inclusion in any of their books or blog entries. Well to make it easier for all of you, I went ahead and researched all of these. read more...

add a comment |category: |Views: 10

tags: another

ScottGu: Introducing “Razor” – a new view engine for ASP.NET(weblogs.asp.net)

submitted by JemmJemm(9604) 1 year, 10 months ago

"ASP.NET MVC has always supported the concept of “view engines” – which are the pluggable modules that implement different template syntax options. The “default” view engine for ASP.NET MVC today uses the same .aspx/.ascx/.master file templates as ASP.NET Web Forms. Other popular ASP.NET MVC view engines used today include Spark and NHaml. The new view-engine option we’ve been working on is optimized around HTML generation using a code-focused templating approach. The codename for this new view engine is “Razor”, and we’ll be shipping the first public beta of it shortly." read more...

add a comment |category: |Views: 552

tags: another

Using Tika in .NET for extracting text out of documents(is.gd)

submitted by chadmyerschadmyers(840) 1 year, 10 months ago

Tika is an open source Java-based tool for extracting information out of various different document formats. It can be used with Lucene for indexing and searching documents, among other things. In this post, Kevin Miller talks about how use Tika in .NET via the IKVM.net utility. read more...

1 comment |category: |Views: 781

tags: another

Uploading multiple files with Silverlight 4.0(www.silverlightshow.net)

submitted by KMillerrKMillerr(2072) 1 year, 10 months ago

In this article, Andrea Boschin is creating a simple reusable control that lets the developer implement a better file-uploading experience using Silverlight 4.0. read more...

add a comment |category: |Views: 39

tags: another

Windows Phone 7 Action Pack Tool for easier Windows Phone 7Development(www.ginktage.com)

submitted by isenthilisenthil(2309) 1 year, 10 months ago

Windows Phone 7 Action Pack Tool for easier Windows Phone 7 Development- read more...

add a comment |category: |Views: 19

tags: another

Announcing the Release of Quick and Dirty Feed Parser(qdfeed.codeplex.com)

submitted by AarononthewebAaronontheweb(1140) 1 year, 10 months ago

Quick and Dirty Feed Parser is a lightweight .NET 2.0 library designed to give developers an agnostic way of parsing RSS 2.0 and Atom 1.0 XML syndication formats. QD Feed Parser parses both Atom and RSS feeds into business objects with common interfaces which expose the substance of the feeds - that way you can get to the business of syndicating content without worrying about what format it's in. read more...

add a comment |category: |Views: 2

tags: another

IIS Express(web2asp.net)

submitted by sedgeysedgey(1728) 1 year, 10 months ago

If like me you are sick to death of Cassini (whats that then? its the built in web server that visual studio uses) and also sick to death of playing around with IIS 7 then relief is at hand. read more...

3 comments |category: |Views: 860

tags: another

Getting started with bing map in silver-light(beyondrelational.com)

submitted by sdineshsdinesh(610) 1 year, 11 months ago

This post explains how to get started with Bing Map and Silverlight. This is first of a series of posts which explains how to build geo-spatial solutions using silverlight, bing maps based on the data stored in a SQL Server database. read more...

add a comment |category: |Views: 169

tags: another

Microsoft needs to innovate or go home [ASP.NET](blog.wekeroad.com)

submitted by AarononthewebAaronontheweb(1140) 1 year, 11 months ago

It's a simple concept really: MVC is a wonderful addition to the Microsoft web stack, but it's not exactly "daring" - not yet anyway. By "daring" I mean "ass-kicking" in the way ASP.NET was when it was first introduced, and ASP Classic when it first came along just 4 years before that. These platforms inspired thousands of developers - ASP.NET alone was responsible for expanding the Microsoft developer base massively. Inspiring. Controversial. Wonderful and Fearless. Many have described the newer web frameworks with exactly the same adjectives: Rails, Sinatra, and Django have inspired and helped so many - and enable so much on the web. Microsoft developers tend to remain completely ignorant of what these frameworks are capable of - and it makes sense as to why. read more...

add a comment |category: |Views: 11

tags: another

How to Query a User's del.icio.us Feed with RestSharp(www.aaronstannard.com)

submitted by AarononthewebAaronontheweb(1140) 1 year, 11 months ago

Using RestSharp's smart deserialization capabilities to automatically parse an XML document (del.icio.us RSS feeds in this case) into POCO classes. read more...

add a comment |category: |Views: 98

tags: another

WPF ListView Styling Tutorial Part I(blog.vascooliveira.com)

submitted by VOliveiraVOliveira(80) 1 year, 11 months ago

This quick article will enable you to take full advantage of the ListView control by creating a simple data model and through a step-by-step incremental approach, demonstrate how to fully style the ListView GridView control. read more...

add a comment |category: |Views: 518

tags: another