接受另一个xml文件的一部分,并将其包含到当前创建的文件中:c#,XmlWriter

时间:2018-11-08 09:00:48

标签: c# linq-to-xml xmlwriter

我需要一些帮助,我已经生成了一个xml文件,我希望在其中占一小部分并包含在新的xml中。

我正在c#中使用xmlWriter

例如:

我的第一个xml:

<h:body>
    <h:outputScript>
    $(document).ready(function(){
        // try to get a reference to the DF widget from top window context:
        var dfWidgetVar = window.top.$('[data-pfdlgcid]').attr('data-widgetvar');
        var dfWidget = window.top.PF(dfWidgetVar);

        // clear closeIcon click event listener stack and add your remoteCommand:
        dfWidget.closeIcon.unbind('click').on('click', dfClosed);
    });
    </h:outputScript>

    <h:form>
        ...         
        <p:remoteCommand name="dfClosed" action="#{myBean.dfClosed}"/>
    </h:form>

</h:body>

0 个答案:

没有答案