This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Say you are in a world where you want to use progressive enhancement (sometimes for accessibility) | |
with ASP.NET MVC 3+. | |
Progressive Enhancement means the site WORKS WITHOUT JAVASCRIPT FOLKS. | |
Now say you have something like comments that will be on multiple pages. | |
You want the site to be maintainable so you want to use a partial with | |
form submission. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows; | |
namespace WpfLoadedClassHandler | |
{ | |
/// <summary> | |
/// Shows how to globally handle Loaded event. | |
/// Workarounds bug: https://connect.microsoft.com/VisualStudio/feedback/details/511753/window-loadedevent-doesnt-work-properly-when-used-to-register-a-class-event-handler | |
/// Discussed: http://stackoverflow.com/questions/11455800/routed-event-class-handler-for-loadedevent-does-not-work-for-most-classes | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UPnP.cs: UPnP Device Discovery Test. | |
// | |
// Authors: | |
// Eric Butler <[email protected]> | |
// | |
// (C) 2006 FileFind.net (http://filefind.net) | |
// | |
using System; |
NewerOlder