2
Reply

I have some dll that developed by ASP application,can i use reuse that dll to ASP.net application,Is it possible ,How Explain?

Shahul Hameed

Shahul Hameed

Apr 12, 2007
5.9k
1

    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(); }

    Dinesh Reddy
    March 05, 2013
    0

    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. 

    April 13, 2007
    0