1

我使用 xml 作为文件上传器的数据库。我已经上传了文件并生成了 xml,但是我在创建和“管理”页面时遇到了麻烦,该页面列出了数据库中的所有条目,并为用户提供了删除条目以及为条目添加首字母的选项但这不是我需要帮助的地方。我让 XML 正确显示,但要创建一个删除按钮,我意识到我需要使用<asp:GridView>.

我无法让我的 XML 甚至使用 gridView 显示。我想我有删除按钮的功能,但由于这个问题无法测试。任何帮助将不胜感激。

我的代码:

管理员.aspx

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

        <asp:GridView ID="adminXML" runat="server"  />

    </div>
    </form>
</body>
</html>

resdat.xml

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<resdat>
  <entry>
    <date>SomeDate</date>
    <filename>someFile.jpg</filename>
    <filePath>http://google.com</filePath>
    <initials></initials>
  </entry>
  <entry>
    <date>11-11-2013</date>
    <filename>owl2.jpg</filename>
    <filePath>http://somewebsite.com/data/owl2.jpg</filePath>
    <initials></initials>
  </entry>
  <entry>
    <date>11-11-2013</date>
    <filename>wildtextures-old-paper-texture-3.jpg</filename>
    <filePath>http://somewebsite.com/data/wildtextures-old-paper-texture-3.jpg</filePath>
    <initials></initials>
  </entry>
  <entry>
    <date>11-11-2013</date>
    <filename>QwbRElE_.m4a</filename>
    <filePath>http://somewebsite.com/data/QwbRElE_.m4a</filePath>
    <initials></initials>
  </entry>
</resdat>

管理员.aspx.cs

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
using System.Collections.Generic;
using System.Xml;
using System.Xml.Linq;
using System.Linq;

namespace fileUploader
{
    public partial class admin : System.Web.UI.Page
    {

        protected void Page_Load(object sender, EventArgs e)
        {
            XmlDataSource xmlDS = new XmlDataSource();
            xmlDS.EnableCaching = false;
            xmlDS.DataFile = "~/App_Data/resdat.xml";
            xmlDS.TransformFile = "~/App_Data/adminFormat.xslt";
            xmlDS.XPath = "/resdat";
            adminXML.DataSource = xmlDS;
            adminXML.DataBind();
            adminXML.Visible = true;



        }
        private void btn_Delete(object sender, EventArgs e)
        {
            //XmlDocument resdat = new XmlDocument();
            //resdat.Load("~/App_Data/resdat.xml");



            //    resdat.Save(Server.MapPath("~/App_Data/resdat.xml"));
        }

    }
}

adminFormat.xslt

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
    <xsl:output method="html" indent="yes"/>
<!-- This is old code for the <asp:Xml> format -->
    <!--<xsl:template match="/resdat">
        <h3>Entries in XML Database</h3>
      <table>
        <thead>
          <tr>
            <td>Date</td>
            <td>File</td>
            <td>Initials</td>
            <td>Delete</td>
          </tr>
        </thead>
        <xsl:for-each select="entry">
          <tr>
            <td>
              <xsl:value-of select="date"/>
            </td>
            <td>
              <a>
                <xsl:attribute name="href">
                  <xsl:value-of select="filePath"/>
                </xsl:attribute>

                <xsl:value-of select="filename"/>
              </a>
            </td>
            <td>
              <xsl:value-of select="initials"/>
            </td>
            <td>
              <input type="button" value="delete" onClick="btn_Delete" >
                <xsl:attribute name="id">
                  <xsl:value-of select="filename"/>

                </xsl:attribute>

              </input>
            </td>

          </tr>



        </xsl:for-each>


      </table>
    </xsl:template>-->

  <xsl:template match="/">
    <resdat>
      <xsl:apply-templates/>
    </resdat>
  </xsl:template>


  <xsl:template match="entry">
    <entry>
      <xsl:apply-templates select="*"/>      
    </entry>   
  </xsl:template>

  <xsl:template match="resdat/entry/*">
    <xsl:attribute name="{local-name()}">
      <xsl:value-of select="."/>
    </xsl:attribute>



  </xsl:template>

</xsl:stylesheet>

我在网上到处搜寻,到目前为止找不到任何适合我的资源。任何帮助将不胜感激。

tl:dr 需要在表格格式的每个“条目”旁边有一个删除按钮。找不到删除按钮的好解决方案/无法将 xml 正确加载到数据网格中。任何帮助表示赞赏。

4

1 回答 1

1

我认为您遇到的一个问题是您的 xpath 表达式

xmlDS.XPath = "/resdat";

这应该是选择网格“行”的 xpath 表达式。在您的情况下,您希望每个条目元素都有一行,所以它应该看起来像这样

xmlDS.XPath = "/resdat/entry";

事实上,你可以不用注释掉这一行,因为它会假设根元素的子元素是这种情况下的记录。

至于“删除”按钮,值得指出的是,XmlDataSource 控件是只读数据源,因此它并不是真正用于可编辑的 GridView。但是,如果您确实想坚持使用它,则需要手动指定列,而不是自动生成它们,并指定一个按钮字段来执行删除:

       <asp:GridView ID="adminXML" runat="server" AutoGenerateColumns="False" OnRowCommand="adminXML_RowCommand" >
        <Columns>
            <asp:BoundField HeaderText="File Name" DataField="filename" SortExpression="ProductID" />
            <asp:ButtonField CommandName="Del" Text="Delete" />
       </Columns>
       </asp:GridView>

然后,在您后面的代码中,您将拥有自己处理删除行的代码

    protected void adminXML_RowCommand(object sender, CommandEventArgs e)
    {
        if (e.CommandName == "Del")
        {
            /*
            Do Delete
            */
        }
    }

如果查看事件参数e的属性,您将看到 CommandArgument 属性设置为要删除的行的行索引。

要记住的一件事是,您在每次页面加载时都进行数据绑定,在这种情况下,您只需要在第一次访问页面时执行此操作,而不是在回发时执行此操作。此外,由于您将自己负责从 XML 中删除行,因此您需要在删除后重新绑定网格。因此您的代码可能看起来像这样

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            BindDataSource();
            adminXML.Visible = true;
        }
    }

    protected void adminXML_RowCommand(object sender, CommandEventArgs e)
    {
        if (e.CommandName == "Del")
        {
            /*
            Do Delete
            */
            BindDataSource();
        }
    }

    private void BindDataSource()
    {
        XmlDataSource xmlDS = new XmlDataSource();
        xmlDS.EnableCaching = false;
        xmlDS.DataFile = "~/App_Data/resdat.xml";
        xmlDS.TransformFile = "~/App_Data/adminFormat.xslt";
        xmlDS.XPath = "/resdat/entry";
        adminXML.DataSource = xmlDS;
        adminXML.DataBind();
    }

当然,要使其工作,您几乎肯定必须修改 XML 文档的权限以允许 asp.net 用户对其进行写入。您还必须考虑如果两个用户同时尝试修改 XML 文档会发生什么。

不过,理想情况下,当您拥有可编辑的数据源时,您应该考虑使用 SQL 数据源(例如 Microsoft 的 SQL Compact)。

于 2013-11-11T23:07:07.987 回答