0

我正在练习我的第一个 html 示例。

我有EditProfile.htm页面:

<body>
    <div align="center">
        <form id="user-edit-form" action="" method="POST">
            <table>
                <tr>
                    <td>Display Name</td>
                    <td>
                        <input id="txtusername" type="text" style="width: 260px" />         
                    </td>
                </tr>
                <tr>
                    <td>Real Name</td>
                    <td>
                        <input id="txtrealname" type="text" maxlength="100" style="width: 260px" /> 
                    </td>
                </tr>
                <tr>
                    <td>Email</td>
                    <td>
                        <input id="txtmail" type="text" maxlength="100" style="width: 390px" /> 
                    </td>
                </tr>
                <tr>
                    <td>
                        <input id="submit" type="submit" value="Save Profile"/>
                    </td>
                </tr>
            </table>
        </form>     
    </div>
</body>

客户端将填写textboxes,我希望将所有输​​入的值保存(而不是保存到sql数据库中),然后客户端单击:(ViewProfile.htm或.aspx)->页面将显示他们提供的所有信息。

你能给我一些解决方案或建议或链接,文件来做到这一点。

  1. 如何将客户端在EditProfile.htm页面中提供的所有输入值保存到文件夹中的文件(xml,...???)中?

  2. 然后,如何将新文件(xml,...?)中的所有信息获取到页面:ViewProfile.htm当客户想要查看他们的信息时。

4

1 回答 1

0

您可以使用查询字符串将值从一页传递到另一页,尽管还有许多其他方法

这是我的 editprofile.aspx 页面

<form id="form1" runat="server">
    <div align="center">

            <table>
                <tr>
                    <td>Display Name</td>
                    <td>
                        <asp:TextBox ID="txtDisplayName" runat="server"></asp:TextBox>         
                    </td>
                </tr>
                <tr>
                    <td>Real Name</td>
                    <td>
                        <asp:TextBox ID="txtRealName" runat="server"></asp:TextBox>         
                    </td>
                </tr>
                <tr>
                    <td>Email</td>
                    <td>
                        <asp:TextBox ID="txtEmail" runat="server"></asp:TextBox>        
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click"></asp:Button>
                    </td>
                </tr>
            </table>

    </div>

    </form> 

在此页面后面的代码中,我通过查询字符串传递值

protected void Button1_Click(object sender, EventArgs e)
    {
        Response.Redirect("Viewprofile.aspx?DisplayName=" + txtDisplayName.Text + "&RealName=" + txtRealName.Text+"&Email="+txtEmail.Text);
    }

现在您可以像这样在 Viewprofile.aspx.cs 上获取这些值

string displayName = Request.QueryString["DisplayName"];
string realName= Request.QueryString["RealName"];
string email= Request.QueryString["Email"];

为了将这些值保存在 xml 文件中,您可以试试这个

XDocument doc = new XDocument( new XElement( "myXML", 
                                           new XElement( "DisplayName", displayName ), 
                                           new XElement( "RealName", realName ),
                                           new XElement( "Email", email)
 )  );
        doc.Save( "D:\\temp.xml" );
于 2013-10-19T14:28:09.013 回答