Castle.MonoRail.Framework.ViewEngineBase.GenerateJS C# (CSharp) Method

GenerateJS() public method

Processes the js generation view template - using the templateName to obtain the correct template, and using the context to output the result.
public GenerateJS ( IRailsEngineContext context, Controller controller, string templateName ) : void
context IRailsEngineContext The request context.
controller Controller The controller.
templateName string Name of the template.
return void
		public virtual void GenerateJS(IRailsEngineContext context, Controller controller, string templateName)
		{
            GenerateJS(context.Response.Output, context, controller, templateName);
		}

Same methods

ViewEngineBase::GenerateJS ( TextWriter output, IRailsEngineContext context, Controller controller, string templateName ) : void