asp.net(c#)开发中的文件上传组件uploadify的使用方法(5)

//文件后缀名
            string extenstion = fileName.Substring(fileName.LastIndexOf(".") + 1);
            string name = fileName.Substring(0, fileName.LastIndexOf(".")) + "(" + DateTime.Now.ToFileTime() + ")";
            string newFileName = name + "." + extenstion;
            return newFileName;
        }

public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }


asp.net(c#)开发中的文件上传组件uploadify的使用方法


asp.net(c#)开发中的文件上传组件uploadify的使用方法

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjdfpg.html