XSLTForms/ASP.NET
外观
在 ASP.NET 中,XSLTForms 可用于服务器端通过调用 asp:Xml 控件处理 XForm,如以下所示
<asp:Xml ID="Xml1"
runat="server"
DocumentSource="~/myform.xforms"
TransformSource="~/xsltforms/xsltforms.xsl"
EnableViewState="False"
></asp:Xml>
使用 ASP.NET DOM 界面可提交表单,如下所示
<%@ Page Language="C#" %>
<%
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.Load(Request.InputStream);
// process your xml here....
%>
来源:本页面最初是基于从 William Velasquez 获得的信息起草的,感谢他。