Board index » cppbuilder » CGI DLL vs dot net
Emmanuel
![]() CBuilder Developer |
Emmanuel
![]() CBuilder Developer |
CGI DLL vs dot net2005-03-30 06:57:03 PM cppbuilder74 I want to ask which is better in the performance for CGI Dll and Dot Net? somebody claim that CGI is as bad as ASP , is there real? Thank you |
Hans Galema
![]() CBuilder Developer |
2005-03-30 09:35:07 PM
Re:CGI DLL vs dot net
Emmanuel wrote:
QuoteI want to ask which is better in the performance for CGI Dll and Dot Net? Quotesomebody claim that CGI is as bad as ASP , is there real? |
Emmanuel
![]() CBuilder Developer |
2005-03-31 12:59:07 PM
Re:CGI DLL vs dot net
I say using C++builder to produce a DLL CGI , and using C# to produce a web
application, which performance is better because, I am using C++builder to produce a DLL CGI before, I need to know whether I need to give up develop DLL CGI and start to using C# "Hans Galema" < XXXX@XXXXX.COM >???? QuoteEmmanuel wrote: {smallsort} |
Hans Galema
![]() CBuilder Developer |
2005-03-31 05:39:23 PM
Re:CGI DLL vs dot net
Emmanuel wrote:
QuoteI say using C++builder to produce a DLL CGI , and using C# to produce a web Quotebecause, I am using C++builder to produce a DLL CGI before, I need to know Handling a databasequery ? Hans. |
JJ
![]() CBuilder Developer |
2005-04-01 01:17:45 AM
Re:CGI DLL vs dot net
I've used both. And as for performance, I belief when we are talking about
online, enterprise applications, this topic is almost errellelavant. In this type of application, most of your performance bottleneck will likely be confined to your IO tasks(DB/File, Connections, and etc...). With that said, If I were you, I would concentrate on the functionality, stability, flexibility, and scalability rather than performance. I believe there's a place for every programming language. Your challenge is to select the most appropriate one for your project/task. Just for your gradification(not as a suggestion or recommendation), .NET (similar to java and JIT) will compile to native code(this will take couple steps though). So what can you lose. Good luck Jeff www.ruamkwamkid.com "Emmanuel" < XXXX@XXXXX.COM >wrote in message QuoteI want to ask which is better in the performance for CGI Dll and Dot Net? |