ie421.NET

面对技术,你别无选择,.NET世界是如此精彩,而我们要做的就是:Thinking More

博客园 首页 新随笔 联系 订阅 管理

How to check the FileUpload control on Client code(Brower)
First the FileUpload control is support Validator control
so we can use RegularExpressionValidator, CustomerValidator, because we can't set Ignore case property on Regular Expression Validator , so  i like use CustomerValidator to check the Extension.
The code on below, you can copy the code block to your page, and add one CustomerValidator

 <script type="text/javascript">
function CheckFile(sender,arg)
{
    
var enableExt =["jpg","gif","bmp","png"]; // add your enable extension on that
    if (arg.Value=="")
    
{
        arg.IsValid 
=true;
    }

    
else
    
{
        
var temp = arg.Value.split(".");
        
var extension = temp[temp.length-1];
        extension 
= extension.toLowerCase();
        
var isValid = false;
        
        
for(i=0;i<enableExt.length;i++)
        
{
           
if (extension==enableExt[i])
           
{
                isValid
=true;
           }

        }

        arg.IsValid 
= isValid;
    }

}

</script>
posted on 2008-07-25 13:08  ie421  阅读(300)  评论(0编辑  收藏  举报