I make use of a ReportView component in a VB.Net 2005 app. How can I disable the PDF export functionality, only keeping the MS Excel format?
This simple jQuery approach worked for me:
$(document).ready(function () { $("a[title='PDF']").parent().hide(); // Remove from export dropdown. $("a[title='MHTML (web archive)']").parent().hide(); $("a[title='TIFF file']").parent().hide(); });