zoukankan      html  css  js  c++  java
  • fileupload图片预览功能

    FileUpload上传图片前首先预览一下

    看看效果:

    在专案中,创建aspx页面,拉上FileUpload控件一个Image,将用来预览上传时的图片。

    复制代码
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

    <!DOCTYPE html>

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title></title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <table>
    <tr>
    <td style="vertical-align: top; 10%;">
    <fieldset>
    <legend>选择图片</legend>
    <asp:FileUpload ID="FileUpload1" runat="server" />
    </fieldset>
    </td>
    <td style="vertical-align: top; 90%;">
    <fieldset>
    <legend>预览</legend>
    <asp:Image ID="Image1" runat="server" Visible="false" />
    </fieldset>
    </td>
    </tr>
    </table>
    </div>
    </form>
    </body>
    </html>
    复制代码

    在Page_Init事件中,为FileUpload控件,注册onchange客户端事件。

    protected void Page_Init(object sender, EventArgs e)
    {
    this.FileUpload1.Attributes.Add("onchange", Page.ClientScript.GetPostBackEventReference(this.FileUpload1, "onchange"));
    }

    接下来,Insus.NET创建一个axd处理文档,其实ImageProcessFactory.cs只是一个普通的类别,只实作了IHttpHandler接口。

    按 Ctrl+C 复制代码
    按 Ctrl+C 复制代码

    为能应用到axd文档,需要在Web.Config中配置一下。

    复制代码
    <configuration>
    <system.web>
    <httpHandlers>
    <add verb="*" path="PreviewImage.axd" type="Insus.NET.ImageProcessFactory"/>
    </httpHandlers>
    </system.web>
    </configuration>
    复制代码

    Ok,我们回到aspx.cs页面中,要在page_Load中,怎监控FileUpload控件是否有值变化:

    复制代码
    protected void Page_Load(object sender, EventArgs e)
    {
    if (IsPostBack)
    {
    var ctrl = Request.Params[Page.postEventSourceID];
    var args = Request.Params[Page.postEventArgumentID];

    OnchangeHandle(ctrl, args);
    }
    }
    复制代码

    在Page_Load中有一个方法OnchangeHandle(xxx,xxx):

    按 Ctrl+C 复制代码
    按 Ctrl+C 复制代码
  • 相关阅读:
    node nmp 的关键信息
    PHP中定义常量的区别,define() 与 const
    mac电脑如何快速显示桌面及切换应用
    Mac拷贝/复制文件夹路径快捷键
    比 file_get_contents() 更优的 cURL 详解(附实例)
    PHP fopen/file_get_contents与curl性能比较
    在phpstorm中如何对比文件呢?
    PHP 基础篇
    MySQL 中视图和表的区别以及联系是什么?
    MAC将根目录文件夹的权限赋给用户
  • 原文地址:https://www.cnblogs.com/pengmincd/p/4019532.html
Copyright © 2011-2022 走看看