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
| public class CustomSiteRoutes : RouteBase | |
| { | |
| public override RouteData GetRouteData(HttpContextBase httpContext) | |
| { | |
| if (httpContext.Request.Url.Host.Contains("site2.com")) | |
| { | |
| string url = httpContext.Request.AppRelativeCurrentExecutionFilePath; | |
| string controllername = "Home"; |
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
| #region Using declarations | |
| using System; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Xml.Serialization; | |
| using NinjaTrader.Cbi; | |
| using NinjaTrader.Data; | |
| using NinjaTrader.Indicator; |
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
| #region Using declarations | |
| using System; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Xml.Serialization; | |
| using NinjaTrader.Cbi; | |
| using NinjaTrader.Data; | |
| using NinjaTrader.Indicator; |
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.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Security.Cryptography; | |
| using System.Web.Script.Serialization; | |
| public class MuutHelper | |
| { |
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
| #region Using declarations | |
| using System; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Xml.Serialization; | |
| using NinjaTrader.Cbi; | |
| using NinjaTrader.Data; | |
| using NinjaTrader.Indicator; |
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
| #results { | |
| font-size:16px; | |
| color:red; | |
| font-weight:bold; | |
| } |
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
| if (!String.format) { | |
| String.format = function(format) { | |
| var args = Array.prototype.slice.call(arguments, 1); | |
| return format.replace(/{(\d+)}/g, function(match, number) { | |
| return typeof args[number] != 'undefined' | |
| ? args[number] | |
| : match | |
| ; | |
| }); | |
| }; |
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
| IF "$(BuildingInsideVisualStudio)"=="true" goto :local | |
| // this runs in automated build | |
| goto :exit | |
| :local | |
| // this runs in Visual Studio | |
| :exit |
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
| public static class EnumUtil { | |
| public static IEnumerable<T> GetValues<T>() { | |
| return Enum.GetValues(typeof(T)).Cast<T>(); | |
| } | |
| public static T ParseEnum<T>( string value ) | |
| { | |
| return (T) Enum.Parse( typeof( T ), value, true ); | |
| } | |
| } |
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
| <h4>Basic Knockout Binding Demo</h4> | |
| <div> | |
| <span data-bind="text:firstName"></span> | |
| <span> </span><span data-bind="text:lastName"></span> | |
| </div> |
NewerOlder