| 发表于:2007-02-01 21:04:282楼 得分:0 |
你的上传控件是什么?是fileupload?时间有限写了一下代码,不知道能否帮到你 boolean fileok = false; string path = server.mappath( "~/upload/ "); if (fileupload1.hasfile) { string fileextension = system.io.path.getextension(fileupload1.filename).tolower(); string[] allowedextensions = { ".doc ", ".rar ", ".ppt ", ".xls ", ".txt " , ".mdb "}; for (int i = 0; i < allowedextensions.length; i++) { if (fileextension == allowedextensions[i]) { fileok = true; } } } if (fileok) { fileupload1.postedfile.saveas(path + fileupload1.filename); label2.text = "file uploaded! "; } | | |
|