我有一个应用程序,用户可以在其中单击打开文档路径的链接按钮打开文档
if (e.CommandArgument.ToString().ToLower().IndexOf(".pdf") > 0)
ScriptManager.RegisterStartupScript(Page, this.GetType(), "myPopUp", "<script language='Javascript'>mywin=window.open('file:" + e.CommandArgument.ToString().Trim().Replace("\\", "/") + "', '', 'location=0,status=0,resizable=1,scrollbars=1,height=800px, width=1000px');</script>", false);
在这种情况下,当文件名类似于 xyz## 时,它读取为 xyz#
如果文件名像 xyz# 它正在读取 xyz
有什么解决办法吗?