Latest ASP.NET stories

9 Steps You Can Take to Start Weaning Yourself off Web Forms(www.rogerharford.com)

submitted by SymetriXSymetriX(25) 4 days, 15 hours ago

ASP.NET MVC is seeing a lot of enthusiasm from the community right now, but not everyone is fortunate enough to be able to make the switch right away. Some of you may be maintaining large applications where a full rewrite is not possible, or at least not in the immediate future. That doesn’t mean there aren’t steps you can take to get your code ready for an eventual transition to MVC. read more...

2 comments |category: |Views: 216

tags: another

Attribute based routing in ASP.NET Web API(www.strathweb.com)

submitted by fdubfdub(281) 4 days, 11 hours ago

The AttributeRouting library has been extended to support ASP.NET Web API, and is now available on NuGet. Let's have a look at how it can immediately make your life easier and drastically improve the way you handle your routes. read more...

1 comment |category: |Views: 131

tags: another

JSON Serialization in .NET 4.0 (www.keivansadra.com)

submitted by techiemaetechiemae(64) 6 days, 2 hours ago

Serialization is the process of converting a logical and in-memory object to a string data-type. This has many advantages such as: Storing this data in a database and later retrieving it, exposing an API that serves this data for consumers to use, and many more. JSON is the JavaScript Object Notation and it's used to represent JavaScript objects in string format. There are a ton of benefits to using this format in JavaScript-rich, interactive programs. read more...

add a comment |category: |Views: 23

tags: another

Implementing message handlers to track your ASP.NET Web API usage(www.strathweb.com)

submitted by fdubfdub(281) 11 days, 8 hours ago

Using DelegatingHandlers, building a functionality that checks for an API key on an incoming API request and then logs all requests and responses, thus allowing you to track the usage of your API. read more...

1 comment |category: |Views: 157

tags: another

Towards more secure password hashing in ASP.NET(www.dotnetnoob.com)

submitted by klingsklings(50) 10 days, 21 hours ago

A lot can be done to increase security of how password hashes are created and stored in ASP.NET applications. This article explains more about the PBKDF2 algorithm found in the framework, and how to configure it for more secure password hashing. read more...

add a comment |category: |Views: 199

tags: another

Consuming RSS feeds in ASP.NET(www.keivansadra.com)

submitted by techiemaetechiemae(64) 12 days, 3 hours ago

RSS (Really Simple Syndication) is an incredibly easy way to display content from other websites in all types of industries. You can also publish your own RSS feeds so that people can display your content on their website with incredible ease. I plan on showing both methods in this article. read more...

1 comment |category: |Views: 112

tags: another

Output caching in ASP.NET Web API(www.strathweb.com)

submitted by fdubfdub(281) 14 days, 20 hours ago

Caching output of the ASP.NET Web API Controllers' actions using a custom ActionFilterAttribute read more...

add a comment |category: |Views: 180

tags: another

Asp.net Web API and google chrome’s Postman plugin(ianswerable.com)

submitted by govindmalviyagovindmalviya(14) 14 days, 18 hours ago

debug and test your Asp.net Web API with google chrome’s Postman plugin read more...

add a comment |category: |Views: 21

tags: another

There’s a Tool for That: 13 Essential Tools for the Ninja Web (blogs.telerik.com)

submitted by TelerikTelerik(388) 18 days, 22 hours ago

In this blog I highlight a few tools I find useful for web development, and best of all, almost all of them are completely free! read more...

add a comment |category: |Views: 41

tags: another

Native HTML5 push notifications with ASP.NET Web API and Knockout.js(www.strathweb.com)

submitted by fdubfdub(281) 20 days, 11 hours ago

Tutorial on how to build a multi-person browser-based chat using ASP.NET Web API (PushStreamContent), Server Sent Events (JS Event Source) and Knockout.js. Features HTML5 push notifications over HTTP. read more...

add a comment |category: |Views: 295

tags: another

Creating and using plugins in ASP.NET MVC3(blog.gauffin.org)

submitted by jgauffinjgauffin(155) 23 days, 17 hours ago

Shows how you without effort can create and use plugins in ASP.NET MVC3. The article demonstrates the plugin features of Griffin.MvcContrib. You can for instance edit the plugin views at runtime and just hit F5 in the browser to see the changes. read more...

add a comment |category: |Views: 287

tags: another

Avoid Session TimeOut In Asp.Net To Keep Session Alive(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(1181) 28 days ago

In this post i'm explaining different methods of Avoid Or Prevent Session TimeOut In Asp.Net to Keep Alive. read more...

add a comment |category: |Views: 53

tags: another

Call to Action: Make LESS Native in Modern Browsers(www.kendoui.com)

submitted by toddanglintoddanglin(40) 26 days, 11 hours ago

LESS is a CSS pre-processor that elegantly extends the language features of the world's most popular styling syntax, but using it today requires extra processing. Modern browsers should add native LESS support to make future developers more productive. read more...

1 comment |category: |Views: 161

tags: another

Resize image on the fly with ASP.NET MVC(www.leniel.net)

submitted by lenielleniel(504) 1 month, 1 day ago

I built a piece of code sometime ago to display image thumbnails in a listing page. I thought it's about time to optimize it. I refactored it and started using the WebImage class that comes in System.Web.Helpers namespace. With this class in place you can resize, crop, rotate, etc any image. There's no need to save the thumbnail in the disk, that is, a new image can be generated on the fly/dynamically and sent to the user’s browser. read more...

add a comment |category: |Views: 15

tags: another

Take your ASP.NET Controls to the Gym(blogs.telerik.com)

submitted by TelerikTelerik(388) 1 month, 3 days ago

One of the new ASP.NET 4.5 improvements I’m excited about is the ability to have strongly typed controls. That’s right, you heard me, strongly typed! Why am I so excited about them? Read on to find out. read more...

1 comment |category: |Views: 252

tags: another

QR codes for Asp.Net with NuGet(www.jphellemons.nl)

submitted by jphellemonsjphellemons(269) 1 month, 7 days ago

About a week ago, I received an email from a visitor about my QR code post which I blogged about back in 2010. I have been told that the most important reference was down. It was the reference to the DLL for generating the QR codes. So I uploaded the DLL as mirror Apparently the twitt88.com website is back online at http://platform.twit88.com/projects/mt-qrcode/files It also seems that there has been some new releases for the DLL. Since 2011 you only use NuGet to keep your packages up to date, I thought that adding it through NuGet would be the best option. read more...

add a comment |category: |Views: 6

tags: another