Display text when button clicked
问题 Creating my first ASP.NET MVC Knockout MVC. I've added a model setting 3 dates. The controller assigns 3 dates. Then they are displayed on screen using the view: <p>First Date: @ko.Html.TextBox(m => m.FirstDate)</p> <p>Second Date: @ko.Html.TextBox(m => m.SecondDate)</p> <p>Third Date: @ko.Html.TextBox(m => m.ThirdDate)</p> @ko.Apply(Model) The @ko.Apply(Model) being the main part which displays the 3 dates. I am trying to only show the 3 dates when a button is clicked, so iv put the code