ASP.NET将物件序列化成Binary储存至DB or File

2009-05-12 22:06:05来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

最近有人在讨论这个问题..小弟很少玩这个东西..就到网路上找了一些资源..教大家如何将物件序列化成Binary Data..然后储存到资料库或档桉裡..
当然可以序列化..就一定可以反序列化了...其实序列化格式不一定要是Binary Data..也可以是XML or SOAP Data的...

首先准备一个DB,结构如下:

接下来就是代码了

以下为引用的内容:

asp.net(c#)

SerializingObjects.aspx

view plaincopy to clipboardprint?
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SerializingObjects.aspx.cs" Inherits="SerializingObjects" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="
http://www.w3.org/1999/xhtml" > 
<head runat="server"> 
    <title>Serializing Objects</title> 
</head> 
<body> 
    <form id="form1" runat="server"> 
    <div> 
        <asp:DropDownList ID="ddlType" runat="server"> 
            <asp:ListItem Value="0">资料库</asp:ListItem> 
            <asp:ListItem Value="1">档桉</asp:ListItem> 
        </asp:DropDownList> 
        <asp:Button ID="btnLoad" runat="server" OnClick="btnLoad_Click" Text="读取" /> 
 
        <asp:Label ID="Label1" runat="server" Text="编号:"></asp:Label> 
        <asp:TextBox ID="txbId" runat="server"></asp:TextBox> 
         
 
        <asp:Label ID="Label2" runat="server" Text="名称:"></asp:Label> 
        <asp:TextBox ID="txbName" runat="server"></asp:TextBox> 
         
 
        <asp:Label ID="Label3" runat="server" Text="电话:"></asp:Label> 
        <asp:TextBox ID="txbTel" runat="server"></asp:TextBox> 
 
        <asp:Label ID="Label4" runat="server" Text="地址:"></asp:Label> 
        <asp:TextBox ID="txbAddress" runat="server"></asp:TextBox> 
        <asp:Button ID="btnAdd" runat="server" OnClick="btnAdd_Click" Text="新增" /></div> 
    </form> 
</body> 
</html> 
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SerializingObjects.aspx.cs" Inherits="SerializingObjects" %>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Cast的妙用:泛用LINQ 語句

下一篇:使用Ajax后,原来导出功能失败的解决方法