how to get xml html after transpose and databind()
        Posted  
        
            by rlee923
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by rlee923
        
        
        
        Published on 2010-06-09T07:51:11Z
        Indexed on 
            2010/06/10
            7:32 UTC
        
        
        Read the original article
        Hit count: 275
        
Hi.
I have some code that uses xsl and xml. The Xml control is on the design page. The xml control id is xmlApplication The xmlstring is generated and xsl has the format with all the tables and cells etc. Here is a part of thecode of a page which generates the final product which shows the xml in a certain format.
xmlApplication.Document = xmlDoc;
xmlApplication.Transform = transApp;
xmlApplication.DataBind();
I am guessing after xmlApplication.Databind(), xmlApplication will be converted into something that can be put inside . Is it possible to grab as a string?
Please let me know if I have a wrong idea abut this.
Thanks a lot.
© Stack Overflow or respective owner