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
ko.unobtrusive.createBindings(bindings); | |
ko.applyBindings(viewModel); |
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
<fieldset> | |
<legend>Speaker Info</legend> | |
Name: @Html.TextBoxFor(m => m.Name) <br /> | |
Bio: @Html.TextAreaFor(m => m.Bio) <br /> | |
Twitter Handle: @Html.TextBoxFor(m => m.TwitterHandle) <br /> | |
State: @Html.TextBoxFor(m => m.State) <br /> | |
</fieldset> |
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
<form id="addSpeaker"> | |
<fieldset> | |
<legend>Speaker Info</legend> | |
Name: <input type="text" id="name" /> <br /> | |
Bio: <textarea id="bio"></textarea> <br /> | |
Twitter Handle: <input type="text" id="twitterHandle" /> <br /> | |
State: <input type="text" id="state" /> <br /> | |
Photo Url: <input type="text" id="photoUrl" /> | |
</fieldset> | |
<fieldset> |
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
<form data-bind="submit: addSpeaker"> | |
<fieldset> | |
<legend>Speaker Info</legend> | |
Name: <input type="text" data-bind="value: name" /> <br /> | |
Bio: <textarea data-bind="value: bio"></textarea> <br /> | |
Twitter Handle: <input type="text" data-bind="value: twitterHandle" /> <br /> | |
State: <input type="text" data-bind="value: state" /> <br /> | |
</fieldset> | |
<fieldset> | |
<legend>Languages</legend> |
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
<Action Name="Send an SMS Text Message" | |
ClassName="MyCompany.Workflow.Messaging.Activities.SendSMSActivity" | |
Assembly="MyCompany.Workflow.Messaging.Activities, Version=1.0.0.0, | |
Culture=neutral, PublicKeyToken=fe2315b70tbc147c" | |
AppliesTo="all" | |
Category="Messaging Actions"> | |
<RuleDesigner Sentence="Send %1 to number %2"> | |
<FieldBind Field="Message" Text="this message" DesignerType="TextBox" Id="1"/> | |
<FieldBind Field="Number" Text="this number" DesignerType="TextBox" Id="2"/> | |
</RuleDesigner> |
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.ComponentModel; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using System.Workflow.ComponentModel; | |
using System.Workflow.ComponentModel.Design; | |
namespace MyCompany.Workflow.Messaging.Activities | |
{ |
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
<sources> | |
<source name="System.Workflow"> | |
<listeners> | |
<add name="System.Workflow" /> | |
</listeners> | |
</source> | |
<source name="System.Workflow.Runtime"> | |
<listeners> | |
<add name="System.Workflow" /> | |
</listeners> |
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
<system.diagnostics> | |
<switches> | |
<add name="System.Workflow LogToTraceListeners" value="1" /> | |
<add name="System.Workflow.Runtime" value="Error"/> | |
<add name="System.Workflow.Runtime.Hosting" value="Error"/> | |
<add name="System.Workflow.Runtime.Tracking" value="Error"/> | |
<add name="System.Workflow.Activities" value="Error"/> | |
<add name="System.Workflow.Activities.Rules" value="Off"/> | |
</switches> | |
<trace autoflush="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
<configuration> | |
<system.diagnostics> | |
<switches> | |
<add name="System.Workflow LogToTraceListeners" value="1" /> | |
<add name="System.Workflow.Runtime.Hosting" value="Verbose" /> | |
<add name="System.Workflow.Runtime" value="Verbose" /> | |
<add name="System.Workflow.Runtime.Tracking" value="Verbose" /> | |
<add name="System.Workflow.Activities" value="Verbose" /> | |
<add name="System.Workflow.Activities.Rules" value="Verbose" /> | |
</switches> |
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
@{ | |
Layout = "~/Views/Shared/_Layout.cshtml"; | |
} |