Sign In
dmitryr's blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ASP.NET
ASP.NET Cassini
ASP.NET MVC
ASP.NET MVC VB XML
ASP.NET MVC VB XML VB.NET
Cassini
JavaScript
Pluralize
RSS
Silverlight
Archive
Archives
May 2010
(1)
April 2009
(1)
March 2009
(1)
February 2009
(1)
January 2009
(1)
December 2008
(1)
October 2008
(1)
June 2008
(1)
May 2008
(1)
June 2007
(1)
May 2007
(3)
March 2007
(1)
February 2007
(1)
January 2007
(4)
November 2006
(1)
March 2006
(3)
February 2006
(1)
December 2005
(2)
November 2005
(1)
October 2005
(1)
September 2005
(1)
July 2005
(1)
June 2005
(5)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
dmitryr's blog
JavaScript English Noun Pluralizer
Posted
over 2 years ago
by
dmitryr msft
0
Comments
Attached is a JavaScript version of English noun pluralizer adopted from my earler C# sample . Live sample available here . Thanks, Dmitry 5/28/2010 - version 1.0.2
dmitryr's blog
Cassini: Support for Friendly URLs / Routing
Posted
over 3 years ago
by
dmitryr msft
23
Comments
Cassini had a problem with ASP.NET projects using Routing due to the directory listing feature. Cassini would respond with the directory listing to any request for a directory, without handing over the request to ASP.NET. As a result, requests for friendly...
dmitryr's blog
Plan 9 Update (03/01/2009)
Posted
over 3 years ago
by
dmitryr msft
1
Comments
I've updated Plan 9 sample. Please download the attachment. Changes include: GET / POST page methods instead of Page_Load / Page_Post Support for stand-alone .aspx pages (in the application root directory) Authorization via page directive...
dmitryr's blog
VB.NET XML Literals ASP.NET MVC Sample Updated for ASP.NET MVC RC
Posted
over 3 years ago
by
dmitryr msft
2
Comments
I've updated the VB XML Literals View Engine sample for ASP.NET MVC RC (attached). Thanks, Dmitry
dmitryr's blog
ASP.NET MVC “Plan 9” Sample
Posted
over 3 years ago
by
dmitryr msft
4
Comments
[Latest update here ] The attached sample implements simplified Web application paradigm (called “Plan 9 MVC”) based on ASP.NET MVC. It is page-centric (it hides Controllers) but it retains many of the benefits of ASP.NET MVC. The package contains...
dmitryr's blog
ASP.NET MVC View Engine using VB.NET XML Literals
Posted
over 4 years ago
by
dmitryr msft
10
Comments
[Update for ASP.NET MVC RC available ] The code in the attached ZIP file implements a custom View Engine for ASP.NET MVC Beta using VB.NET XML literals. Instead of traditional ASP.NET pages, the views are implemented as VB.NET classes. The package...
dmitryr's blog
Cassini for Framework 3.5
Posted
over 4 years ago
by
dmitryr msft
24
Comments
The attachment contains Cassini version for .NET Framework 3.5. Highlights: Runs as a single EXE -- does not require an assembly in GAC Supported IPv6-only configurations Upgraded to support .NET Framework 3.5 Includes VS project file...
dmitryr's blog
Dynamic Client Script for Silverlight 2 beta 2
Posted
over 4 years ago
by
dmitryr msft
1
Comments
Silverlight 2 beta 2 is out, so I updated Dynamic Client Script sample accordingly (attached to this post).
dmitryr's blog
Dynamic Client Script for Silverlight 2 beta 1
Posted
over 4 years ago
by
dmitryr msft
1
Comments
Last year I've published a simple ASP.NET control, called ‘Dynamic Client Script', that enables IronPython client scripting in ASP.NET pages in Silverlight 1.1 Alpha. Since then Silverlight evolved quite a bit and Silverlight 2 Beta 1 has been released...
dmitryr's blog
ASP.NET RSS Toolkit Version 2
Posted
over 5 years ago
by
dmitryr msft
8
Comments
Thanks to Piyush , the second version of ASP.NET RSS Toolkit is now available on CodePlex . Please check it out . Thanks, Dmitry
dmitryr's blog
Photo Album Sample
Posted
over 5 years ago
by
dmitryr msft
9
Comments
Attached is an updated Photo Album sample. The idea is to maximize the simplicity of use - just drop default.aspx page into the [root] directory where the pictures are and it does everything for you -- list view per folder, details view for each picture...
dmitryr's blog
ASP.NET Futures
Posted
over 5 years ago
by
dmitryr msft
1
Comments
Please check out ASP.NET Futures release with Dynamic Langauges support and Dynamic Data Controls. The former is the updated version of IronPython for ASP.NET, now based on DLR. Thanks, Dmitry
dmitryr's blog
Dynamic Client Script
Posted
over 5 years ago
by
dmitryr msft
2
Comments
Attached to this post is the Dynamic Client Script sample -- an ASP.NET control that simplifies creation of AJAX-like Web pages in managed scripting languages using Microsoft Silverlight cross-browser / cross-platform technologies. The recent release...
dmitryr's blog
Another CodePlex Project
Posted
over 5 years ago
by
dmitryr msft
1
Comments
Some time ago I wrote a simple ASP.NET in-process executor for internal testing and I am happy to see it go public on CodePlex (under name "Plasma") including NUnit integration, thanks to Steve Smith from AspAlliance . Please check it out. Thanks,...
dmitryr's blog
Disk Output Cache is now on CodePlex
Posted
over 5 years ago
by
dmitryr msft
8
Comments
Thanks to Scott Cate the Disk Output Cache project is now on CodePlex . Please check it out and consider contributing. Thanks, Dmitry
dmitryr's blog
Finding out the current trust level in ASP.NET
Posted
over 5 years ago
by
dmitryr msft
2
Comments
Here is a sample code that returns the current trust level, assuming this code (or the calling code up the stack), is not loaded from GAC: AspNetHostingPermissionLevel GetCurrentTrustLevel() { foreach (AspNetHostingPermissionLevel trustLevel in new...
dmitryr's blog
Simple English Noun Pluralizer in C#
Posted
over 5 years ago
by
dmitryr msft
5
Comments
When working on Web Services support for Dynamic Languages I needed a simple pluralizer for English nouns, and I did put one together that I would like to share. The algorithm is very simple: 1) There is a list of special nouns that is looked up first...
dmitryr's blog
Dynamic Languages on .NET
Posted
over 5 years ago
by
dmitryr msft
6
Comments
My latest work has to do with Dynamic Languages on .NET (please see my updated bio ). We've already posted several projects on the web: IronPython , implementation of the Python programming language running on .NET Samples for IronPython...
dmitryr's blog
ASP.NET RSS Toolkit is now on CodePlex
Posted
over 5 years ago
by
dmitryr msft
1
Comments
ASP.NET RSS Toolkit now on CodePlex -- please consider contributing... Thanks to IDisposable for making this happen. Dmitry
dmitryr's blog
ASP.NET RSS Toolkit on CodePlex -- coordinator(s) needed
Posted
over 6 years ago
by
dmitryr msft
8
Comments
I’d like to setup an open source project on http://www.codeplex.com/ for the ASP.NET RSS Toolkit and I need help coordinating check-ins. I will create the project (with the updated sources that include bug fixes and some new requested features), but I...
dmitryr's blog
RSS Toolkit Update
Posted
over 6 years ago
by
dmitryr msft
127
Comments
I am posting a minor update to the ASP.NET RSS Toolkit (version 1.0.0.1). It contains changes made in response to the feedback I received -- I'd like to thank everyone for their comments and suggestions! Here is the list of changes: Added MaxItems...
dmitryr's blog
Cassini Update
Posted
over 6 years ago
by
dmitryr msft
16
Comments
[latest here ] I've posted an update to Cassini v2 sources that fixes a leak of Connection objects pointed out to me by Vlad Hrybok . You can get the update as the attachment to this post. If you are running stress against Cassini please also be...
dmitryr's blog
Child Requests in ASP.NET 2.0
Posted
over 6 years ago
by
dmitryr msft
16
Comments
The attached sample illustrates how to execute true server-side child requests that go though the entire HTTP pipeline in ASP.NET v2.0. The full source code is included. Out of the box ASP.NET supports two similar features: Server.Execute. This...
dmitryr's blog
ASP.NET RSS Toolkit
Posted
over 6 years ago
by
dmitryr msft
173
Comments
[Latest update available here (3/26/2006)] Please check out the attached ASP.NET RSS Toolkit, one of my latest projects. The RSS toolkit includes support for consuming as well as publishing RSS feeds in ASP.NET applications. Features include: ...
dmitryr's blog
Disk Output Cache
Posted
over 7 years ago
by
dmitryr msft
20
Comments
Please check out my latest project -- an HTTP Module that implements Disk Output Cache for ASP.NET v2.0. The package includes binaries as well as the complete sources for the module. Download from the attachment to this blog entry. Note: Beta releases...
Page 1 of 2 (35 items)
1
2
MSDN Blogs
>
dmitryr's blog