Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to check upload file content type in classic asp?
Posted
Comments
ujju.1 28-Jan-13 3:20am    
what exactly you want to check??
AdityaPratapSingh 28-Jan-13 3:37am    
i want to check content type of uploaded file.
lindam88 8-Mar-13 21:47pm    
log on to this site, you will learn more-->http://www.sitepoint.com/forums/showthread.php?157726-Validate-User-s-upload-file-in-ASP

XML
<%@  language="VBScript" %>
<!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>
    <title></title>
    <script language="javascript" type="text/javascript">
        function checkImage(img) {
            if (img != '' && img.substring(img.length - 3, img.length).toLowerCase() != 'jpg' && img.substring(img.length - 3, img.length).toLowerCase() != 'gif' && img.substring(img.length - 3, img.length).toLowerCase() != 'bmp' && img.substring(img.length - 3, img.length).toLowerCase() != 'png')
                return true
            else
                return false
        }
        function check() {
            var str = '';
            var strFocus = '';
            var img = document.frmCategory.Cat_Image.value;
            if (checkImage(img)) {
                str += "Select proper image.";
                if (strFocus == '') strFocus = 'Cat_Image';
            }
            if (str != '') {
                alert(str);
                if (document.getElementById(strFocus) != null)
                    document.getElementById(strFocus).focus();
                return false;
            }
        }
    </script>
</head>
<body>
    <form method="post" action="" id="frmCategory" name="frmCategory" onsubmit="return check();">
    <input type="file" id="Cat_Image" name="Cat_Image" value="" />
    <img src="images/save.jpg" alt="Save" width="60" height="20" border="0" onclick="javascript:check();" />
    </form>
</body>
</html>
 
Share this answer
 
try this link

http://globalbanke.com/uploadFiles.asp?CustomName=Red
 
Share this answer
 
what do you exactly want to check??
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900