1

I want make simple applications how to read .dwg files in asp.net. What are procedure to read .dwg simple files in asp.net files. How we can read autocad files in asp.net or c#

Rajesh Kumar
  • 31
  • 1
  • 1
  • 2

1 Answers1

2

DWG is proprietary file format, I think the way to go is vendor SDK, in this case AutoCAD SDK. See if .net is supported, or else you might need to unmanaged component in c++.

But have a look into this thread,

.Net CAD component that can read/write dxf/ dwg files

Are there any libraries for parsing AutoCAD files?

For Open source C++:

http://libdwg.sourceforge.net/en/

But above all depends on external components as i said before.

Community
  • 1
  • 1
NatarajC
  • 123
  • 6
  • can we have simple application to view .dwg files in asp.net – Rajesh Kumar Apr 11 '16 at 11:14
  • 1
    As the other thread mentions, check out https://www.woutware.com/ , the library name is CADLib and has a free trial version of 30 days. The library should have api documentation and may be even some sample. You can give it a try. – NatarajC Apr 11 '16 at 11:30