ContactController.SendContact C# (CSharp) Method

SendContact() private method

private SendContact ( [ info ) : void
info [
return void
		public void SendContact([DataBind("contact")] ContactInfo info)
		{
			// We could save, send through email or something else. 
			// For now, we just show the data back

			PropertyBag["contact"] = info;

			RenderView("Confirmation");
		}