本帖最后由 韩继新 于 2013-9-26 11:29 编辑
GridView绑定的数据中有FILE_NAME字段,我在前台页面可以通过<%# Eval("FILE_NAME") %>得到,但是我怎么把得到的这个值作为- function download(filepath) {
- //文件路径(相对路径)
- var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
- xmlhttp.open("GET", "Upload/JCJY/"+filepath, false);
- xmlhttp.send();
- if (xmlhttp.readyState == 4) {
- if (xmlhttp.status == 200) {
- window.open("Upload/JCJY/" + filepath);
- }
- else if (xmlhttp.status == 404) {
- alert("文件已删除!");
- }
- }
- }
复制代码 download这个js函数的参数呢?,将<%# Eval("FILE_NAME") %>放到download里面不识别
|