http://klusner.myopenid.com/
Name: http://klusner.myopenid.com/
Score: 63.03
Last Seen: 8 days, 13 hours, 55 minutes ago
Member Since: 24 May, 2009
DotNetShoutout
atom rss
5
shouts

.NET 4.0 And Our Parallel Future

published 15 days, 8 hours, 36 minutes ago posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 16 days, 12 hours, 19 minutes 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: 25 | comment | | source: www.codethinked.com
tags: H3C HCNE GB0-183 braindumps training materials, ZENABtAG
5
shouts

SharePoint 2010 ECMAScript - How to know logged in user information

published 15 days, 8 hours, 36 minutes ago posted by PraveenPraveen 16 days, 14 hours, 19 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: Foundation | clicked: 6 | comment | | source: praveenbattula.blogspot.com
tags: Client Object Model, ECMAScript, SharePoint 2010
7
shouts

DependencyProperties or INotifyPropertyChanged ?

posted by jmix90jmix90 17 days, 12 hours, 28 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: Foundation | clicked: 10 | comment | | source: blog.lexique-du-net.com
tags: Dependency Property, Dependency-Properties, INotifyPropertyChanged, Performance Test, WPF
7
shouts

Zenab's Tech Blog.Net: "Control can not be created because visual studio can not find the controls 's type in control assembly"

published 143 days, 10 hours, 22 minutes ago posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 144 days, 13 hours, 22 minutes ago
Monday, October 26, 2009 1:47:53 PM GMT Sunday, October 25, 2009 10:47:33 AM GMT
This error message was suddenly popping up in visual studio when I tried to drag my custom web control on a web page then tried to compile the code and found two main error messages in error list. Some thing like "only one section per config file is allowed" since I had just added ajax configuration to web.config file like httpModules > addtype="URLRewrite"name="URLRewrite" /> httpHandlers> addverb=""path="_AppService.axd"validate="false"type="System.Web.Script.Services.ScriptHandlerFactory, Sy... (more)
category: ASP.NET | clicked: 82 | comment | | source: csharpgurus.blogspot.com
tags: HttpModules
8
shouts

ASP.NET Session State Server vs. InProc Session - Stack Overflow

published 159 days, 9 hours, 53 minutes ago posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 160 days, 6 hours, 19 minutes ago
Saturday, October 10, 2009 2:17:12 PM GMT Friday, October 09, 2009 5:51:25 PM GMT
ASP.NET Session State Server vs. InProc Session 0 1 What is the overhead performance penalty for running Session State Server instead of InProc? Is it significant? I understand that you can restart w3wp with the state server and retain all session state - is that the only advantage over InProc?asp.netsession-state-serversessionflagedited Sep 16 at 9:06laalto 6,400●1●3●19asked Sep 16 at 8:48Alex 4,979●6●21 69% accept rate2 Answersoldestnewestvotes 0 It depends on your dep... (more)
category: ASP.NET | clicked: 51 | comment | | source: stackoverflow.com
6
shouts

Technical Corner: CS0117: 'Default1.aspx' does not contain a definition for 'binding'- salesforce sample C# asp.net

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 161 days, 3 hours, 35 minutes ago
Thursday, October 08, 2009 8:35:21 PM GMT
CS0117: 'Default1.aspx' does not contain a definition for 'binding'- salesforce sample C# asp.netuse correct webreference, you have to use patnet webservice. (more)
category: ASP.NET | clicked: 2 | comment | | source: mytechnicalcorner.blogspot.com
4
shouts

WCF Essentials—Self-hosting and base addresses at C# Online.NET (CSharp-Online.NET)

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 169 days, 14 hours, 24 minutes ago
Wednesday, September 30, 2009 9:46:06 AM GMT
WCF Essentials—Self-hosting and base addressesMicrosoft .NET Framework, ADO.NET, ASP.NET, SQL Server, Visual C#, Visual Studio Developer Training Jump to: navigation, searchCSharp-Online.NET:Articles.NET Articles WCF EssentialsWhat Is WCF?Services §Addresses §Contracts §Hosting §IIS HostingUsing VS 2005Web.Config fileSelf-HostingUsing VS 2005Self-hosting and base addressesAdvanced hosting featuresServiceHost (more)
category: Architecture | clicked: 8 | comment | | source: en.csharp-online.net
3
shouts

Zenab's Tech Blog.Net: Anonymous methods & Lambda expressions

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 258 days, 5 hours, 43 minutes ago
Friday, July 03, 2009 6:26:57 PM GMT
When we declare a Delegate we usually write this code, publicdelegate string aDelagateFunc(string name); Now create a function with same signature string otherfunc(string n) { return "hello " + n; } call this function through delegate aDelagateFunc del = new aDelagateFunc(otherfunc); stringstrreturnval = del("World"); MessageBox.Show(strreturnval); To reduce this amount of code , to make the called function as Inline function , C# 2.0 introduced new feature with called " anonym... (more)
category: Agile | clicked: 14 | comment | | source: csharpgurus.blogspot.com
tags: Anonymous method, Linq
2
shouts

Zenab's Tech Blog.Net: How to fix MS Visual studio Error " The filename, directory name, or volume label syntax is incorrect.(Exception from HResult:0x8007007B) "

posted by http://klusner.myopenid.com/http://klusner.myopenid.com/ 298 days, 10 hours, 12 minutes ago
Sunday, May 24, 2009 1:57:57 PM GMT
I keep getting this error while trying to add a project under a folder in blank solution using Microsoft visual studio 2005. I did not use any character like .? etc in filename but still got the error until... (more)
category: ASP.NET | clicked: 4 | comment | | source: csharpgurus.blogspot.com