[RESOLVED] Is same .DLL file can be used in WinForms and ASP.NET
Hello experts ,
I want to create a .DLL (my library file) so that it can be used as data source for reports (to use with .RDLC files).
Can I use same .DLL in my ASP.Net application for reports as data source (here also .RDLC files).
It will save my time and maintain report integrity between WinForms application and ASP.Net applicatoion.
Re: Is same .DLL file can be used in WinForms and ASP.NET
Think about this. You use the String class in WinForms apps, right? You also use the String class in ASP.NET apps, right? It's the same String class, defined in the mscorlib.dll library.
Re: Is same .DLL file can be used in WinForms and ASP.NET