我在打开中间有琥珀色的文件时遇到问题。
var attachment = "attachment;" + "&test& incident&.txt";
HtmlPage.Window.CreateInstance("foo2", new object[] { Id.ToString(), attachment });
function foo2(theAlert, type) {
alert(type);
window.open('fileViewer.aspx?Id=' + theAlert + '&Type=' + type);
}
当我尝试在另一个页面中获取类型时,我只得到“附件;” 因为它采用&符号之前的单词。并缺少我的文件名。如果我给出不带 & 的文件名,我在打开文件时没有任何问题。
有人帮帮我吗?
提前致谢。