By default IIS sets the upload filesize limit to a measly 200KB. To edit this you need to enable direct metabase editing in IIS, then edit c:\windows\system32\inetsrv\Metabase.xml . You need to modify the MaxRequestEntityAllowed which is in bytes. Restart IIS.
Posts Tagged ‘ASP’
CDONTS vs CDOSYS for ASP Email
December 10th, 2009
No Comments
CDONTS was deprecated and replaced by CDOSYS in Winddows 2003. You can still install and use CDONTs if you need it though. Just google for CDONTS and register the DLL. CDONTS Example: <% Option Explicit Dim objMail Dim strSubject Dim strBody strSubject = “This is a test email in HTML format”