http://klusner.myopenid.com/
Name: http://klusner.myopenid.com/
Score: 148.05
Last Seen: 532 days, 17 hours ago
Member Since: 24 May, 2009
DotNetShoutout
atom rss
3
Shouts

Zenab's Tech Blog.Net: HTTP Error 404.11 - Not Found The request filtering module is configured to deny a request that contains a double escape sequence.IIS7

published 710 days, 16 hours, 53 minutes ago posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 712 days, 3 hours, 44 minutes ago
Saturday, June 11, 2011 9:57:06 AM GMT Thursday, June 09, 2011 11:06:18 PM GMT
If your SEO friendly URL contains special characters as + or - and running under IIS7 , you 'll get ... (more)
category: Web Dev | clicked: 3 | comment | | source: csharpgurus.blogspot.com
2
Shouts

Zenab's Tech Blog.Net: Intelligencia UrlRewriter and 404 page not found Error

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 831 days, 2 hours, 50 minutes ago
Friday, February 11, 2011 12:00:01 AM GMT
If you are getting this Error with Intelligencia.UrlRewriter and IIS 5/6,Follow these simple steps. (more)
category: Web Dev | clicked: 2 | comment | | source: csharpgurus.blogspot.com
tags: IIS5, URLrewiter
4
Shouts

Zenab's Tech Blog.Net: fix for The state information is invalid for this page and might be corrupted Error

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 952 days, 2 hours, 27 minutes ago
Wednesday, October 13, 2010 12:23:19 AM GMT
see workaround for this error. (more)
category: Web Dev | clicked: 0 | comment | | source: csharpgurus.blogspot.com
tags: jQuery, ASP.NET
3
Shouts

Zenab's Tech Blog.Net: Fix for URL Rewriting With Intelligencia dll and IIS 5.1 Problem

published 954 days, 13 hours, 20 minutes ago posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 956 days, 5 hours, 35 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Friday, October 08, 2010 9:15:40 PM GMT
If  a rewritten URL contains GUID( where Guid is encrypted in this example) and extra under  Intelligencia rewriter  and  IS 5.1 or IIS 6 ,  Request.QueryString["guid"]   will always read guid+ extra querystring.For Example we have a following  rewritten URL. http://somesite.com/myeSite/Preview/0t40f6ArIZYKk%2b70AceKoNQOJJucjXLwdwGjTXE4owz77cKhwsI%2bQ78TE8jLZmNUayRTO8YjzwltiHfP%2bqIYfQ%3d%3d/Intellgencia-and-URL-rewriting Though URL have been  precisely configured  in web.config as (more)
category: Web Dev | clicked: 0 | comment | | source: csharpgurus.blogspot.com
tags: urlrewriting
6
Shouts

jQuery UI - Autocomplete Demos & Documentation

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 1044 days, 11 hours, 42 minutes ago
Monday, July 12, 2010 3:07:54 PM GMT
InteractionsDraggableDroppableResizableSelectableSortableWidgetsAccordionAutocompleteButtonDatepickerDialogProgressbarSliderTabsEffectsColor AnimationToggle ClassAdd ClassRemove ClassSwitch ClassEffectToggleHideShowUtilitiesPositionAbout jQuery UIGetting StartedUpgrade GuideChangelogRoadmapSubversion AccessUI Developer GuidelinesThemingTheming jQuery UIjQuery UI CSS FrameworkThemeRoller applicationTheme Switcher WidgetAutocomplete New windowTags: The Autocomplete widgets provides suggestions while yo... (more)
category: Web Dev | clicked: 0 | comment | | source: jqueryui.com
tags: dotnet, Quality, blahh, jQuery
5
Shouts

.NET 4.0 And Our Parallel Future

published 1175 days, 11 hours, 16 minutes ago posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 1176 days, 15 hours ago
Wednesday, March 03, 2010 3:34:31 PM GMT Tuesday, March 02, 2010 11:50:34 AM GMT
.NET 4.0 And Our Parallel Future Posted on 2/25/2010 11:46:53 PM by Justin Etheredge I want to show you an algorithm, it is a pretty simple algorithm. It is an implementation of the Damerau–Levenshtein edit distance algorithm from the pseudocode on Wikipedia:public static int EditDistance(string string1, string string2) { var s1Length = string1.Length; var s2Length = string2.Length; var matrix = new int[s1Length + 1, s2Length + 1]; for (int i = 0; i <= s2length;="" j++)... (more)
category: Agile | clicked: 1 | comment | | source: www.codethinked.com
tags: ZENABtAG, H3C HCNE GB0-183 braindumps training materials
5
Shouts

SharePoint 2010 ECMAScript - How to know logged in user information

published 1175 days, 11 hours, 16 minutes ago posted by PraveenPraveen 1176 days, 16 hours, 59 minutes ago
Wednesday, March 03, 2010 3:34:31 PM GMT Tuesday, March 02, 2010 9:51:24 AM GMT
This is post which is simple and not really needed. But when I started writing the code in ECMAScript I have faced problems in getting the logged in user information. So, my readers may feel good after see this post and really most the users are looking for this too. By this time, we have really understood all about ECMAScript Client Object Model and debugging. So, it's easy for us to know it well. Please find the code below to get the current user information. So, the above code returns you the use... (more)
category: How To | clicked: 5 | comment | | source: praveenbattula.blogspot.com
tags: Client Object Model, ECMAScript, SharePoint 2010
7
Shouts

DependencyProperties or INotifyPropertyChanged ?

posted by jmix90jmix90 1177 days, 15 hours, 8 minutes ago
Monday, March 01, 2010 11:42:05 AM GMT
When you want to make an object binding-aware you have two choices : implements INotifyPropertyChanged or creates DependencyProperties. Which one is the best ? Let's try to answer this question ! (more)
category: How To | clicked: 4 | comment | | source: blog.lexique-du-net.com
tags: Dependency Property, Dependency-Properties, WPF, INotifyPropertyChanged, Performance Test