Fluqi.Widget.jSelectMenu.SelectMenu.Render C# (CSharp) Method

Render() public method

Writes the HTML for the SelectMenu control to the response stream.
public Render ( ) : void
return void
		public void Render() {
			string tagHtml = this.GetTagHtml();

			Writer.Write(tagHtml);
		}

Usage Example

Example #1
0
		internal static void ForceRender(SelectMenu m)
		{
			m.Render();
		}