Shahul Hameed
I have some dll that developed by ASP application,can i use reuse that dll to ASP.net application,Is it possible ,How Explain?
By Shahul Hameed in COM Interop on Apr 12 2007
  • Dinesh Reddy
    Mar, 2013 5

    public class ObjectToSerialize { clsStudent objStudent = new clsStudent(); public static string SerializeAnObject(object AnObject) { XmlSerializer ser = new XmlSerializer(AnObject.GetType()); TextWriter Writer = new StringWriter(); ser.Serialize(Writer, AnObject); return Writer.ToString(); }

    • 0
  • Apr, 2007 13

    We can develop dll either in vb or atl for asp application. Now in dot net we can use it by interop services.

    Namespace : using System.Runtime.InteropServices;
    You can go through lot of examples available on com reusibility in dot net. 

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS