I have a question as to why the RequestExternalPdf.aspx inside "Application\Admin\Public\CustomerCenter" contains the following:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
I want to be able to use this handler for more than just PDF's (like CSV's) and having this HTML results in my csv containing HTML at the bottom.
When removed it works - but would rather see the change implemented to the Dynamicweb Core instead of my own temporary fix to the admin file.