dhtmlxConnector on an MVC application

hi Team,
Is there a support for MVC application, I am trying to use the connector on my MVC application but couldn’t find any documentation

Are you mean .Net MVC of PHP MVC frameworks ?
In second case check MVC related tutorials at the bottom of the next page

docs.dhtmlx.com/tutorials__index.html

I am talking about asp.net MVC

Hi,
dhtmlxConnectors does not fit very well with ASP.NET MVC applications, since connectors are designed to work with http request and response directly. So making them work in mvc action requires some workarounds, however still available with the public API. Please check this example:

[code]public ContentResult ConnectorData()
{
//manually specify the content type
Response.ContentType = “text/xml”;

// create the connector and do required settings
var conn = new dhtmlxConnector....;

//manually invoke the request processing
conn.ProcessRequest(this.Request.QueryString, this.Request.Form);

//initialize special 'writter' class which will be rendering the response
var writer = new dhtmlxXMLWriter(new System.Text.StringBuilder(), new HttpResponse(null));
conn.Render(writer);

//return the connector response from the action
return Content(writer.GetResult());

}[/code]