私はtest.cfm
動的にpdfファイルを構築し、それをブラウザで出力する場所<cfheader>
を持ってい<cfcontent>
ますが、それでもページをロードして「テストhtml」を表示したい:
<CFFILE action="readbinary" file="#expandpath("./test.cfm")#" variable="testcontent" />
<CFHEADER name="Content-Disposition" value="attachment; filename=""test.txt""; charset=utf-8">
<CFCONTENT type="text/plain" reset="yes" variable="#testcontent#">
<CFCONTENT type="text/html" reset="yes" /><!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Testdoc</title>
</head>
<body>test html</body>
</html>
(ファイル自体を出力するのは一例です)
これを達成する方法はありますか?