Beispiel #1
0
 public FubuHtmlDocument <StandardIn> get_standard(StandardIn input)
 {
     _standardPage.Add(new HtmlTag("h1").Text("Standard Form"));
     _standardPage.Add(createStandardForm());
     _standardPage.Asset("recorder.js");
     _standardPage.Add(_standardPage.WriteScriptTags());
     return(_standardPage);
 }
		public FubuHtmlDocument<StandardIn> get_standard(StandardIn input)
		{
			_standardPage.Add(new HtmlTag("h1").Text("Standard Form"));
			_standardPage.Add(createStandardForm());
			_standardPage.Asset("recorder.js");
			_standardPage.Add(_standardPage.WriteScriptTags());
			return _standardPage;
		}
Beispiel #3
0
 public FubuContinuation post_standard(StandardIn input)
 {
     return(FubuContinuation.RedirectTo(input, "GET"));
 }
		public FubuContinuation post_standard(StandardIn input)
		{
			return FubuContinuation.RedirectTo(input, "GET");
		}