Attach to IIS process easily. Handy and nice.
Author: Andreas Plahn
Visual Studio Regex Tester extension
Mmm Regular expression tester.
For Visual Studio 2010, 2012, 2013.
Try the “OUTPUT MODE: C# sample” its amazing. 🙂
Design patterns C# FAQ Part 1 (Training) – CodeProject
Here’s a small quick FAQ on design patterns in Q and A format. In this section we will cover factory , abstract factory , builder , prototype , shallow and deep prototype , singleton and command patterns.
http://www.codeproject.com/Articles/28309/Design-pattern-FAQ-Part-1-Training
Ultimate Guide to Speeding Up ReSharper (and Visual Studio) – JetBrains .NET Tools Library – Confluence
Yes.
And some simple smart tips from dileno regarding Visual Studio:
http://blog.dileno.com/archive/200910/faster-visual-studio-with-some-quick-steps/
Popular .NET code – Runnable
Run asp.net c# popular snippets in the browser! Cool stuff.
here: Popular .NET code – Runnable.
Other languages as well: http://runnable.com/
c# – Cannot have multiple items selected in a DropDownList – Stack Overflow
To overcome this error, you should clear the previous selection of your ddl as following:
ddl.ClearSelection();
via c# – Cannot have multiple items selected in a DropDownList – Stack Overflow.
Handling EPiServer users and roles – reference list – Epinova
Thank you Arild Henrichsen!
If you need some code for:
Handling EPiServer users and roles in EPiServer 5 and 6.
Such as:
– Retrieving users
– Authenticating users (login/logout)
– Creating and deleting users
– Creating, assigning and deleting roles/groups
– Retrieving/setting user profile properties
– Access rights for users and roles
Just go here:
Handling EPiServer users and roles – reference list – Epinova.
Avoid unnecessary text selection on web pages
You know that annoying thing that happens when you try to click a link or a button on a page and you miss, and accidentally marks some text or html:
Css fix:
body{ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
via javascript: Disable Text Select – Stack Overflow.
Js IE fix: (probably needed for some versions of Internet Explorer…)
onselectstart = function(){ return false; }
Jquery IE fix:
In jQuery 1.8, this can be done as follows: (function($){ $.fn.disableSelection = function() { return this .attr('unselectable', 'on') .css('user-select', 'none') .on('selectstart', false); }; })(jQuery);
http://stackoverflow.com/questions/2700000/how-to-disable-text-selection-using-jquery
I havent tested these anywhere… yet. But Stack Overflow is usually right.
ReSharper 8 Default Keyboard shortcuts
Learn some of these and rejoice!
ReSharper 8 Default Keymap – Visual Studio scheme:
http://www.jetbrains.com/resharper/docs/ReSharper80DefaultKeymap_VS_scheme.pdf
Epinova QA checklist for EPiServer CMS 6 projects – Epinova
Epinova QA checklist for EPiServer CMS 6 projects
Sharing our comprehensive QA checklist for EPiServer 6 projects, based on best practices, experience and common sense. The checklist covers development, usability and deployment.
via Epinova QA checklist for EPiServer CMS 6 projects – Epinova.