【servlet 不能查看源码】【spark源码分析下载】【linux uvc 显示源码】ASP电子相册源码_asp电子相册源码是什么

时间:2024-11-13 12:21:45 来源:java积分论坛源码 编辑:溯源码狗粮

1.什么样的电p电网站不用软件就可以在线制作电子相册,而且只要步骤简单就行。相册相册
2.用ASP.NET创建网络相册保存美丽记忆
3.c# 电子相册代码
4.C#语言做的电子相册系统

ASP电子相册源码_asp电子相册源码是源码源码<strong>servlet 不能查看源码</strong>什么

什么样的网站不用软件就可以在线制作电子相册,而且只要步骤简单就行。电p电

       须用以下动感影集、相册相册spark源码分析下载电子相册、源码源码linux uvc 显示源码照片视频制作软件,电p电

       制作完成可在微信、手机、相册相册电脑、源码源码电视播放:

       下载:

       /mysoft/d0.asp?电p电gid=

       按提示,安装完成即可永久使用

用ASP.NET创建网络相册保存美丽记忆

          在我们的日常生活中数码照像设备已经很普遍了 我们会经常拍摄一些相片以供留念 而随着数码照片的增多 往往需要很好地管理这些照片 以便更好地查阅留念 现在网上有不少的电子相册 都能很好的实现这些功能 那我们能否自己动手创建自己的相册呢?当然可以 在这篇文章中 我们将利用asp net 来创建一个简单的在线相册 以收藏我们的照片

          首先来看下 这个相册有哪些功能 在这个相册中 我们必须先把预先摄影好的照片放到一个目录下去 之后 可以供在网上使用 上一张 下一张 的链接一张张地查看

          下面先介绍如何获得文件夹中的图片 我们可以使用System IO命名空间中的DirectoryInfo类来实现 将文件夹所在的路径做为参数传递到该类的构造函数中 并声明一个DirectoryInfo类的实例 DirectoryInfo类中有一个GetFiles()的方法 会返回FileInfo的对象数组 而每一个FileInfo的实例将包含指定路径下文件的具体信息 下面的代码片段说明了该过程

  以下为引用的内容 Sub Page_Load(sender as Object e as EventArgs)  Get list of images Dim dirInfo as New DirectoryInfo(Server MapPath( )) Dim images() as FileInfo = FilterForImages(dirInfo GetFiles())  End Sub

          其中 用Server mappath获得当前目录的路径 而dirinfo getfiles()将会返回该目录下的所有文件 而由于我们的是相册 只需要看到比如JPG BMP GIF等图象文件 所以我们可以通过程序实现 只装载这些类型的文件 这通过一个自定义的过程FilterForImages来实现 该过程将只返回指定文件夹中图象类型的文件 代码如下

        以下为引用的内容 Function FilterForImages(images() as FileInfo) as FileInfo() Dim newImages as New ArrayList(images Length)

       

         Dim i as Integer For i = to images Length   If Path GetExtension(images(i) Name) = jpg OrElse _   Path GetExtension(images(i) Name) = jpeg OrElse _    Path GetExtension(images(i) Name) = png OrElse _    Path GetExtension(images(i) Name) = gif then    newImages Add(images(i))  End If Next

         Return CType(newImages ToArray(GetType(FileInfo)) FileInfo())End Function

         ã€€ã€€è¯¥è¿‡ç¨‹å¯¹äºŽä¼ é€’进来的FileInfo参数数组进行遍历 对文件夹中的文件的后缀名进行叛断 如果属于图象文件 则添加到newimages数组中去 并以arraylist形式返回

          接下来 我们看下如何显示每一张图片 并以 上一张 下一张 来显示 为了知道当前浏览的是第几张图片 可以通过使用传递参数的方法来实现 先往窗体中添加一个image控件和文本框 程序代码如下

        以下为引用的内容 Sub Page_Load(sender as Object e as EventArgs) 

          Dim imgIndex as Integer =  If Not Request QueryString( N ) is 相册相册Nothing AndAlso _  IsNumeric(Request QueryString( N )) then   imgIndex = CInt(Request QueryString( N )) End If  currentImgTitle Text = You are Viewing: & _  Path GetFileNameWithoutExtension(images(imgIndex) Name) & _   ( & imgIndex + & of & images Length & )    currentImg ImageUrl = Path GetFileName(images(imgIndex) Name)    End Sub

          HTML部分代码

以下为引用的内容 <asp:Label runat= server id= currentImgTitle /><br /><asp:Image runat= server id= currentImg />  lishixinzhi/Article/program/net//

c# 电子相册代码

       页面:

       <%@ Page language="c#" Codebehind="filesystem.aspx.cs" AutoEventWireup="false" Inherits="WebShop.filesystem" %>

       <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

       <HTML>

        <HEAD>

        <title>filesystem</title>

        <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">

        <meta content="C#" name="CODE_LANGUAGE">

        <meta content="JavaScript" name="vs_defaultClientScript">

        <meta content="/intellisense/ie5" name="vs_targetSchema">

        <LINK href="CssStyle.css" type="text/css" rel="stylesheet">

        <form id="Form1" method="post" runat="server">

        </HEAD>

        <body MS_POSITIONING="GridLayout">

        <FONT face="宋体">

        <table cellSpacing="1" cellPadding="0" width="" align="center" bgColor="#" border="0">

        <tr>

        <td bgColor="#c" colSpan="3"><IMG src="images/FileSystemBaner.gif"></td>

        </tr>

        <tr>

        <td width="" bgColor="#e3e3e3" rowSpan="2"> 

        <asp:linkbutton id="LinkButton1" runat="server">后退</asp:linkbutton></td>

        <td width="" bgColor="#efefef" colSpan="2">   

        <asp:datalist id="DataList1" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" DataKeyField="Name"

        Width="">

        <ItemTemplate>

        <table width="" align="center">

        <tr>

        <td align="center" width=""></td>

        <td align="left" width=""><%#DataBinder.Eval(Container.DataItem,"Image")%>

        </td>

        </tr>

        <tr>

        <td width="" align="right">

        <asp:CheckBox ID="checkBox1" Runat="server" /></td>

        <td width="" align="left"><font face="宋体"><%#DataBinder.Eval(Container.DataItem,"Name")%></font></td>

        </tr>

        </table>

        </ItemTemplate>

        </asp:datalist></td>

        </tr>

        <tr>

        <td align="right" bgColor="#efefef" colSpan="2"><asp:button id="Button3" runat="server" Text="删除选中项"></asp:button> 

        <input id="fileFeild1" type="file" name="fileFeild1" runat="server">  

        <asp:button id="Button1" runat="server" Text="确定上传"></asp:button><br>

        <asp:textbox id="TextBox1" runat="server"></asp:textbox> 

        <asp:button id="Button2" runat="server" Text="创建目录"></asp:button></td>

        </tr>

        <tr>

        <td bgColor="#" colSpan="3"><span class="STYLE1"><asp:label id="Label2" runat="server" ForeColor="White"> 当前所在位置:</asp:label><SPAN class="STYLE1"><asp:label id="Label1" runat="server" ForeColor="White" Width="px"></asp:label></SPAN></span></td>

        </tr>

        </table>

        </FONT></FORM>

        </body>

       </HTML>

       后台代码:

       using System;

       using System.Collections;

       using System.ComponentModel;

       using System.Data;

       using System.IO;

       using System.Drawing;

       using System.Web;

       using System.Web.SessionState;

       using System.Web.UI;

       using System.Web.UI.WebControls;

       using System.Web.UI.HtmlControls;

       namespace WebShop

       {

        /// <summary>

        /// filesystem 的摘要说明。

        /// </summary>

        public class filesystem : System.Web.UI.Page

        {

        protected System.Web.UI.WebControls.LinkButton LinkButton1;

        protected System.Web.UI.WebControls.DataList DataList1;

        protected System.Web.UI.WebControls.Button Button3;

        protected System.Web.UI.WebControls.Button Button1;

        protected System.Web.UI.WebControls.TextBox TextBox1;

        protected System.Web.UI.WebControls.Button Button2;

        protected System.Web.UI.WebControls.Label Label2;

        protected System.Web.UI.WebControls.Label Label1;

        protected System.Web.UI.HtmlControls.HtmlInputFile fileFeild1;

        private void Page_Load(object sender,源码源码 System.EventArgs e)

        {

        if(!IsPostBack)

        {

        Bind();

        }

        }

        private void Bind()

        {

        string initpath="";

        if(Request["path"]==null)

        {

        initpath=Server.MapPath("FileSystem");

        }

        else

        {

        initpath=Request["path"];

        }

        this.Label1.Text=initpath;

        DataTable dt=new DataTable();

        DataColumn dc0=new DataColumn("Image",System.Type.GetType("System.String"));

        dt.Columns.Add(dc0);

        DataColumn dc1=new DataColumn("Name",System.Type.GetType("System.String"));

        dt.Columns.Add(dc1);

        DirectoryInfo di=new DirectoryInfo(this.Label1.Text);

        DirectoryInfo[] dis=di.GetDirectories();

        foreach(DirectoryInfo d in dis)

        {

        DataRow dr=dt.NewRow();

        dr[0]="<a href='filesystem.aspx?path="+HttpUtility.UrlEncode(d.FullName,System.Text.Encoding.UTF8)+"'><img src='images/folder.gif' border=0/></a>";

        dr[1]=d.Name;

        dt.Rows.Add(dr);

        }

        FileInfo[] fis=di.GetFiles();

        foreach(FileInfo f in fis)

        {

        string ex=f.Extension.ToLower();

        if(ex==".jpg" || ex==".jpeg" || ex==".gif" || ex==".png" || ex==".bmp")

        {

        string fullname=f.FullName;

        string urlpath=fullname.Substring(fullname.IndexOf("FileSystem"));

        string url=HttpUtility.UrlEncode(urlpath,System.Text.Encoding.UTF8);

        DataRow dr=dt.NewRow();

        dr[0]="<a href='"+url+"' target='_blank'><img src='"+url+"' border=0 width= height=/></a>";

        dr[1]=f.Name;

        dt.Rows.Add(dr);

        }

        }

        this.DataList1.DataSource=dt;

        this.DataList1.DataBind();

        }

        #region Web 窗体设计器生成的代码

        override protected void OnInit(EventArgs e)

        {

        //

        // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。

        //

        InitializeComponent();

        base.OnInit(e);

        }

        /// <summary>

        /// 设计器支持所需的电p电仿答题pk源码方法 - 不要使用代码编辑器修改

        /// 此方法的内容。

        /// </summary>

        private void InitializeComponent()

        {

        this.LinkButton1.Click += new System.EventHandler(this.LinkButton1_Click);

        this.Button3.Click += new System.EventHandler(this.Button3_Click);

        this.Button1.Click += new System.EventHandler(this.Button1_Click);

        this.Button2.Click += new System.EventHandler(this.Button2_Click);

        this.Load += new System.EventHandler(this.Page_Load);

        }

        #endregion

        private void LinkButton1_Click(object sender,相册相册 System.EventArgs e)

        {

        string Parent=Directory.GetParent(this.Label1.Text).ToString();

        if(Parent.IndexOf("FileSystem")>-1)

        {

        Response.Redirect("filesystem.aspx?path="+Parent);

        }

        else

        {

        return;

        }

        }

        private void Button1_Click(object sender, System.EventArgs e)

        {

        HttpPostedFile hpf=this.fileFeild1.PostedFile;

        string ClientPath=hpf.FileName;

        string filename=Path.GetFileName(ClientPath);

        string ex=Path.GetExtension(filename);

        if(ex==".jpg" || ex==".jpeg" || ex==".gif" || ex==".png" || ex==".bmp")

        {

        string SavePath=this.Label1.Text+"\\"+filename;

        hpf.SaveAs(SavePath);

        Bind();

        }

        else

        {

        Response.Write(Tools.GetAlertJS("所上传的格式不正确!"));

        return;

        }

        }

        private void Button2_Click(object sender,源码源码彩票 源码 开发犯法 System.EventArgs e)

        {

        string filename=this.TextBox1.Text;

        Directory.CreateDirectory(this.Label1.Text+"\\"+filename);

        Bind();

        }

        private void Button3_Click(object sender, System.EventArgs e)

        {

        for(int i=0;i<this.DataList1.Items.Count;i++)

        {

        if(((CheckBox)this.DataList1.Items[i].FindControl("CheckBox1")).Checked)

        {

        int index=this.DataList1.Items[i].ItemIndex;

        string filePath=this.Label1.Text+"\\"+this.DataList1.DataKeys[index].ToString();

        if(Directory.Exists(filePath))

        {

        Directory.Delete(filePath,true);

        }

        if(File.Exists(filePath))

        {

        File.Delete(filePath);

        }

        Bind();

        }

        }

        }

        }

       }

C#语言做的电子相册系统

       é¦–先需要在同级目录下建立文件夹FileSystem

       //后台代码:

       using System;

       using System.Collections;

       using System.ComponentModel;

       using System.Data;

       using System.IO;

       using System.Drawing;

       using System.Web;

       using System.Web.SessionState;

       using System.Web.UI;

       using System.Web.UI.WebControls;

       using System.Web.UI.HtmlControls;

       namespace WebShop

       {

        /// <summary>

        /// filesystem 的摘要说明。

        /// </summary>

        public class filesystem : System.Web.UI.Page

        {

        protected System.Web.UI.WebControls.LinkButton LinkButton1;

        protected System.Web.UI.WebControls.DataList DataList1;

        protected System.Web.UI.WebControls.Button Button3;

        protected System.Web.UI.WebControls.Button Button1;

        protected System.Web.UI.WebControls.TextBox TextBox1;

        protected System.Web.UI.WebControls.Button Button2;

        protected System.Web.UI.WebControls.Label Label2;

        protected System.Web.UI.WebControls.Label Label1;

        protected System.Web.UI.HtmlControls.HtmlInputFile fileFeild1;

        private void Page_Load(object sender, System.EventArgs e)

        {

        if(!IsPostBack)

        {

        Bind();

        }

        }

        private void Bind()

        {

        string initpath="";

        if(Request["path"]==null)

        {

        initpath=Server.MapPath("FileSystem");

        }

        else

        {

        initpath=Request["path"];

        }

        this.Label1.Text=initpath;

        DataTable dt=new DataTable();

        DataColumn dc0=new DataColumn("Image",System.Type.GetType("System.String"));

        dt.Columns.Add(dc0);

        DataColumn dc1=new DataColumn("Name",System.Type.GetType("System.String"));

        dt.Columns.Add(dc1);

        DirectoryInfo di=new DirectoryInfo(this.Label1.Text);

        DirectoryInfo[] dis=di.GetDirectories();

        foreach(DirectoryInfo d in dis)

        {

        DataRow dr=dt.NewRow();

        dr[0]="<a href='filesystem.aspx?path="+HttpUtility.UrlEncode(d.FullName,System.Text.Encoding.UTF8)+"'><img src='images/folder.gif' border=0/></a>";

        dr[1]=d.Name;

        dt.Rows.Add(dr);

        }

        FileInfo[] fis=di.GetFiles();

        foreach(FileInfo f in fis)

        {

        string ex=f.Extension.ToLower();

        if(ex==".jpg" || ex==".jpeg" || ex==".gif" || ex==".png" || ex==".bmp")

        {

        string fullname=f.FullName;

        string urlpath=fullname.Substring(fullname.IndexOf("FileSystem"));

        string url=HttpUtility.UrlEncode(urlpath,System.Text.Encoding.UTF8);

        DataRow dr=dt.NewRow();

        dr[0]="<a href='"+url+"' target='_blank'><img src='"+url+"' border=0 width= height=/></a>";

        dr[1]=f.Name;

        dt.Rows.Add(dr);

        }

        }

        this.DataList1.DataSource=dt;

        this.DataList1.DataBind();

        }

        #region Web 窗体设计器生成的代码

        override protected void OnInit(EventArgs e)

        {

        //

        // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。

        //

        InitializeComponent();

        base.OnInit(e);

        }

        /// <summary>

        /// 设计器支持所需的方法 - 不要使用代码编辑器修改

        /// 此方法的内容。

        /// </summary>

        private void InitializeComponent()

        {

        this.LinkButton1.Click += new System.EventHandler(this.LinkButton1_Click);

        this.Button3.Click += new System.EventHandler(this.Button3_Click);

        this.Button1.Click += new System.EventHandler(this.Button1_Click);

        this.Button2.Click += new System.EventHandler(this.Button2_Click);

        this.Load += new System.EventHandler(this.Page_Load);

        }

        #endregion

        private void LinkButton1_Click(object sender, System.EventArgs e)

        {

        string Parent=Directory.GetParent(this.Label1.Text).ToString();

        if(Parent.IndexOf("FileSystem")>-1)

        {

        Response.Redirect("filesystem.aspx?path="+Parent);

        }

        else

        {

        return;

        }

        }

        private void Button1_Click(object sender, System.EventArgs e)

        {

        HttpPostedFile hpf=this.fileFeild1.PostedFile;

        string ClientPath=hpf.FileName;

        string filename=Path.GetFileName(ClientPath);

        string ex=Path.GetExtension(filename);

        if(ex==".jpg" || ex==".jpeg" || ex==".gif" || ex==".png" || ex==".bmp")

        {

        string SavePath=this.Label1.Text+"\\"+filename;

        hpf.SaveAs(SavePath);

        Bind();

        }

        else

        {

        Response.Write(Tools.GetAlertJS("所上传的图片格式不正确!"));

        return;

        }

        }

        private void Button2_Click(object sender, System.EventArgs e)

        {

        string filename=this.TextBox1.Text;

        Directory.CreateDirectory(this.Label1.Text+"\\"+filename);

        Bind();

        }

        private void Button3_Click(object sender, System.EventArgs e)

        {

        for(int i=0;i<this.DataList1.Items.Count;i++)

        {

        if(((CheckBox)this.DataList1.Items[i].FindControl("CheckBox1")).Checked)

        {

        int index=this.DataList1.Items[i].ItemIndex;

        string filePath=this.Label1.Text+"\\"+this.DataList1.DataKeys[index].ToString();

        if(Directory.Exists(filePath))

        {

        Directory.Delete(filePath,true);

        }

        if(File.Exists(filePath))

        {

        File.Delete(filePath);

        }

        Bind();

        }

        }

        }

        }

       }

       å‰å°é¡µé¢:

       <%@ Page language="c#" Codebehind="filesystem.aspx.cs" AutoEventWireup="false" Inherits="WebShop.filesystem" %>

       <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

       <HTML>

        <HEAD>

        <title>filesystem</title>

        <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">

        <meta content="C#" name="CODE_LANGUAGE">

        <meta content="JavaScript" name="vs_defaultClientScript">

        <meta content="/intellisense/ie5" name="vs_targetSchema">

        <LINK href="CssStyle.css" type="text/css" rel="stylesheet">

        <form id="Form1" method="post" runat="server">

        </HEAD>

        <body MS_POSITIONING="GridLayout">

        <FONT face="宋体">

        <table cellSpacing="1" cellPadding="0" width="" align="center" bgColor="#" border="0">

        <tr>

        <td bgColor="#c" colSpan="3"><IMG src="images/FileSystemBaner.gif"></td>

        </tr>

        <tr>

        <td width="" bgColor="#e3e3e3" rowSpan="2"> 

        <asp:linkbutton id="LinkButton1" runat="server">后退</asp:linkbutton></td>

        <td width="" bgColor="#efefef" colSpan="2">   

        <asp:datalist id="DataList1" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" DataKeyField="Name"

        Width="">

        <ItemTemplate>

        <table width="" align="center">

        <tr>

        <td align="center" width=""></td>

        <td align="left" width=""><%#DataBinder.Eval(Container.DataItem,"Image")%>

        </td>

        </tr>

        <tr>

        <td width="" align="right">

        <asp:CheckBox ID="checkBox1" Runat="server" /></td>

        <td width="" align="left"><font face="宋体"><%#DataBinder.Eval(Container.DataItem,"Name")%></font></td>

        </tr>

        </table>

        </ItemTemplate>

        </asp:datalist></td>

        </tr>

        <tr>

        <td align="right" bgColor="#efefef" colSpan="2"><asp:button id="Button3" runat="server" Text="删除选中项"></asp:button> 

        <input id="fileFeild1" type="file" name="fileFeild1" runat="server">  

        <asp:button id="Button1" runat="server" Text="确定上传"></asp:button><br>

        <asp:textbox id="TextBox1" runat="server"></asp:textbox> 

        <asp:button id="Button2" runat="server" Text="创建目录"></asp:button></td>

        </tr>

        <tr>

        <td bgColor="#" colSpan="3"><span class="STYLE1"><asp:label id="Label2" runat="server" ForeColor="White"> 当前所在位置:</asp:label><SPAN class="STYLE1"><asp:label id="Label1" runat="server" ForeColor="White" Width="px"></asp:label></SPAN></span></td>

        </tr>

        </table>

        </FONT></FORM>

        </body>

       </HTML>

copyright © 2016 powered by 皮皮网   sitemap