http://blog.turlov.com/
Name: http://blog.turlov.com/
Score: 280.02
Last Seen: 154 days, 23 hours, 40 minutes ago
Member Since: 1 April, 2009
DotNetShoutout
atom rss
6
Shouts

Setting a "Content-Disposition" HTTP Header in Web API Controller Method

published 152 days, 19 hours, 54 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 154 days, 23 hours, 42 minutes ago
Friday, December 21, 2012 10:06:11 AM GMT Wednesday, December 19, 2012 6:18:22 AM GMT
When developing an ASP.NET Web API controller method that allows to download a file it is considered a good practice to set a "Content-Disposition" header to guide a browser of a name of a file being downloaded. (more)
category: Web Dev | clicked: 22 | comment | | source: blog.turlov.com
tags:
7
Shouts

Web.NET: Using Anonymous Types Outside of Local Context with Dynamic Keyword

published 560 days, 15 hours, 10 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 564 days, 7 hours, 52 minutes ago
Wednesday, November 09, 2011 2:50:27 PM GMT Saturday, November 05, 2011 10:08:15 PM GMT
Anonymous types that have been introduced in C# with .NET 3.5 is a convenient and powerful feature and can be used to simplify and speed up development without sacrificing code quality or violating coding standards. Perhaps one most widely known application is to use anonymous types in a context of LINQ expressions since that is mentioned on MSDN in most of the anonymous types related examples. Such strong association between anonymous types and LINQ though being true creates a wrong impression of that L... (more)
category: Web Dev | clicked: 22 | 1 comment | | source: blog.turlov.com
tags: dynamic, C#, anonymous types
3
Shouts

Web.NET: Using jQuery to Consume ASP.NET MVC JSON Services

published 675 days, 21 hours, 22 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 680 days, 2 hours, 36 minutes ago
Sunday, July 17, 2011 8:37:44 AM GMT Wednesday, July 13, 2011 3:24:12 AM GMT
...for the last two years the alternative ASP.NET MVC framework has been drawing more and more attention from the development community due to its good implementation of the MVC design pattern and adherence to web standards and bleeding edge web technologies. For many experienced ASP.NET developers accustomed to Web Services especially accompanied with ASP.NET AJAX framework a natural question occurs: how to implement similar approach with ASP.NET MVC framework and its natural JavaScript companion jQuery? (more)
category: Web Dev | clicked: 27 | 2 comments | | source: blog.turlov.com
tags: ASP.NET MVC, JSON, jQuery, JsonResult, json mvc jquery
4
Shouts

Web.NET: Fix for Bing Maps not working in Firefox 4

published 750 days, 17 hours, 13 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 752 days, 5 hours, 44 minutes ago
Tuesday, May 03, 2011 12:47:15 PM GMT Monday, May 02, 2011 12:16:26 AM GMT
...apparently Bing Maps has some issues in Firefox 4. In particular I saw a JavaScript error that said "p_elSource.attachEvent is not a function". The problem at this point looks like this: 1. the error happens in Bing's JavaScript itself; and 2. it only happens in Firefox 4 browser. Other browsers like IE 8 & 9, Chrome, Safari, Opera and Firefox 3.6 don't produce that problem. Now the problem must be fixed... (more)
category: Web Dev | clicked: 9 | 1 comment | | source: blog.turlov.com
6
Shouts

Web.NET: .NET Reflector is becoming a paid-for product

published 828 days, 9 hours, 29 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 831 days, 8 hours, 45 minutes ago
Monday, February 14, 2011 8:31:05 PM GMT Friday, February 11, 2011 9:15:02 PM GMT
As you may already have learned the famous .NET Reflector created by Lutz Roeder almost a decade ago that was always free to use is becoming a paid-for product thanks to Red Gate Software. The decision is confirming the worst suspicions many had when first heard about Lutz's agreement with the Red Gate and has already created a massive controversy in development communities. For those who do not remember the .NET Reflector was born in the beginning of 2000s and has quickly become one of the must-have... (more)
category: How To | clicked: 2 | comment | | source: blog.turlov.com
tags: Community, Reflector
6
Shouts

Web.NET: Set up local SMTP for your .NET development environment on Windows 7

published 875 days, 7 hours, 6 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 876 days, 7 hours, 36 minutes ago
Wednesday, December 29, 2010 10:54:37 PM GMT Tuesday, December 28, 2010 10:24:19 PM GMT
If you are developing a .NET application that sends emails than you need a way to do that without being constantly connected to the Internet. On Windows 7 with IIS 7 installed you can easily configure a local SMTP service that will intercept all the SMTP sessions initiated in your code and successfully emulate sending the outbound email by saving it as a text file in a folder on your local hard drive. This is extremely convenient and allows you to keep working on your code without interruption even when ... (more)
category: Web Dev | clicked: 1 | comment | | source: blog.turlov.com
tags: .NET, C# .NET, SMTP
3
Shouts

Web.NET: Re: Can architecture emerge from continuous refactoring?

published 1042 days, 16 hours, 37 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 1043 days, 14 hours, 51 minutes ago
Thursday, July 15, 2010 1:22:57 PM GMT Wednesday, July 14, 2010 3:09:31 PM GMT
Recently I've been asked this question "Can architecture emerge from continuous refactoring?" and since this topic is very close to what I do professionally I wanted to share my thoughts about it. What is software architecture?I see software architecture as a parallel to a traditional architecture: it consists of knowledge about everything that is required to build a successful software product as in to successfully construct a building. In a context of a particular project architecture eventually resul... (more)
category: Architecture | clicked: 2 | comment | | source: blog.turlov.com
tags: Refactoring, Agile, Architecture
8
Shouts

Web.NET: ScriptManager vs. ToolkitScriptManager

published 1105 days, 20 hours, 36 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 1106 days, 14 hours, 5 minutes ago
Thursday, May 13, 2010 9:24:37 AM GMT Wednesday, May 12, 2010 3:55:15 PM GMT
Introduction ScriptManager is a special ASP.NET server control that should be placed on a page before you can use any of AJAX.NET enabled controls. The same rule is true for the AJAX Control Toolkit controls: they all require a ScriptManager on the page. While AJAX Control Toolkit controls work perfectly fine with the standard ASP.NET ScritpManager the Toolkit includes its own version of the ScriptManager called ToolkitScriptManager that inherits from ScriptManager and is meant to improve some of the Sc... (more)
category: Web Dev | clicked: 6 | comment | | source: blog.turlov.com
5
Shouts

Web.NET: How to set programmatically a value of a watermarked TextBox via JavaScript - Update

published 1107 days, 20 hours, 26 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 1108 days, 16 hours, 10 minutes ago
Tuesday, May 11, 2010 9:34:41 AM GMT Monday, May 10, 2010 1:49:58 PM GMT
Some time ago I've published an article How to set programmatically a value of a watermarked TextBox via JavaScript about some specifics of working with a text input box decorated with a TextboxWatermark Ajax Extender control from the Ajax Control Toolkit library. The technique described in the article has proven useful for a number of developers so when the new release of the Ajax Control Toolkit has recently been announced I've decided to update the article to cover some of the braking changes in Ajax ... (more)
category: Web Dev | clicked: 1 | comment | | source: blog.turlov.com
tags: AJAX Control Toolkit, JavaScript, ASP.NET
6
Shouts

Web.NET: Leveraging Visual Studio JavaScript IntelliSense. Part 1

published 1111 days, 17 hours ago posted by http://blog.turlov.com/http://blog.turlov.com/ 1112 days, 10 hours, 5 minutes ago
Friday, May 07, 2010 1:00:09 PM GMT Thursday, May 06, 2010 7:55:17 PM GMT
One of the most useful features of the Visual Studio 2008 and Visual Studio 2010 is JavaScript IntelliSense that allows developers write JavaScript code faster, with less errors and reduce learning time of some JavaScript frameworks. Many developers already enjoy its power when code JavaScript with Microsoft ASP.NET Ajax framework and jQuery. However many developers are still not familiar with that tool and even less developers realize that it can also be used with their own code. As convenient and po... (more)
category: Web Dev | clicked: 0 | comment | | source: blog.turlov.com
tags: Visual Studio, JavaScript, Ajax, ASP.NET
10
Shouts

Web.NET: Automatically compress embedded JavaScript resources with Microsoft Ajax Minifier

published 1265 days, 20 hours, 21 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 1270 days, 3 hours, 53 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Monday, November 30, 2009 2:06:44 AM GMT
Recently Microsoft has announced yet another useful addition to an ASP.NET developer tool belt: Microsoft Ajax Minifier, a tool that enables you to reduce the size of a JavaScript file by removing unnecessary content from it. Clearly this is an extremely useful tool and the ASP.NET development community has gladly embraced it (just google it up to see a lot of positive responses). The tool indeed works very well and there have even been a number of articles comparing it to other well-known JavaScript com... (more)
category: Web Dev | clicked: 3 | comment | | source: blog.turlov.com
tags: JavaScript compression, embedded JavaScript, Microsoft Ajax Minifier