Does anyone know of any examples where old school 3rd party components are implemented in ASP.NET? Such as persits upload, safileup, aspmail, etc...<BR><BR>I know this is a "not such a good idea" question but we are in a bind and need something quick.<BR><BR>All help appreciated. I have been all over the web looking for this and no luck. <BR><BR>Thanks,<BR><BR>PaulThe first way is to set the ASPCompat=True attribute in the Page directive. You still use Server.CreateObject and all that jazz. Check out this article I wrote for more information:<BR>http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/convertasptoaspnet.asp<BR><BR>The more efficient way to do it is to use TblImp.exe, a Microsoft utility (that's probably already on your computer) that essentially creates a .NET component wrapper around your COM component. See:<BR>http://www.c-sharpcorner.com/Tutorials/AccessingCOM+UsingCSIA.asp<BR><BR>for more info.<BR><BR>hth