我有一个将数据导出到Excel的ASP文件,它运行正常。
我想在创建excel文件后添加用户确认更新数据库。
我正在尝试使用javascript,但javascript代码未执行。我认为这是因为所有内容都打印在excel文件中。有什么建议吗?
<%Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "content-disposition", "inline; filename=demo.xls"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Demo</title>
</head>
<body leftmargin=10 topmargin=0 rightmargin=0 bottommargin=0>
this is a sample page
<script>
if(confirm("Do you want to update the database?"))
window.location.href="updater.asp";
</script>
</body>
</html>