Asp.net uses fileupload in IE7 and IE8 to preview images before uploading (easy to use)

Source: Internet
Author: User

Due to security issues, IE7 disabled the image control to reference local images. After several days of being depressed for this problem, I finally found a solution. I want to share some good things with you,CodeAs follows:

This code segment is placed between <Style Type="Text/CSS"># Newpreview{
Filter: progid: DXImageTransform. Microsoft. alphaimageloader (sizingmethod=Scale)
}
</Style>

Code in <body> < Script Language = " Javascript " Type = " Text/JavaScript " >
Function previewimg (imgfile)
{
VaR newpreview = Document. getelementbyid ( " Newpreview " );
Newpreview. Filters. Item ( " DXImageTransform. Microsoft. alphaimageloader " ). SRC = Imgfile. value;
Newpreview. style. Width =   " 80px " ;
Newpreview. style. Height =   " 60px " ;
}
</ Script >

< ASP: fileupload ID = " Fud_pic " Runat = " Server " Onchange = " Previewimg (this) "   />
< Div ID = " Newpreview " > </ Div >

From: http://www.cnblogs.com/RobotTech/archive/2007/09/14/893001.html

My comments: It's been a long time to search, and it's a long JavaScript code. This is simple and easy to use! You can preview the file before uploading.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.