|
-
Jan 7th, 2003, 03:05 PM
#1
Thread Starter
Hyperactive Member
Using C++ Online
I have a server that can do it, but my question is how do I implement C++ into a web page?
-
Jan 7th, 2003, 03:30 PM
#2
You can't implement C++ into a web page. You can use an app written in C++ as a CGI app, but that's something completly different and not a very good idea unless you really need that speed.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Jan 7th, 2003, 04:49 PM
#3
<?="Moderator"?>
i thought that in tests CGI apps were slower than PHP and ASP? but i could be wrong.
-
Jan 7th, 2003, 04:58 PM
#4
Good Ol' Platypus
ASP.NET has suppored for compiled languages (of the .NET family, VB.NET, C#, C++.NET). If you knew any of these languages you can use the source file in your aspx.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Jan 7th, 2003, 05:16 PM
#5
If it's a large CGI app the speed advantage of compiled C++ over interpreted scripting languages such as PHP and traditional ASP makes up for the speed problems of the CGI interface (or whatever causes the delay).
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Jan 7th, 2003, 08:30 PM
#6
Hyperactive Member
If you are for speed, you can write ISAPI in C++. That is exactly what my site is: http://www.greatwesternpages.com.au/octopus
http://www.bnt.com/inetsdk/isapi2.htm
-
Jan 9th, 2003, 10:45 AM
#7
Monday Morning Lunatic
Originally posted by john tindell
i thought that in tests CGI apps were slower than PHP and ASP? but i could be wrong.
In CGI mode, PHP will be slower. When used as mod_php with Apache, it will blast through it. Similarly, ASP is parsed by IIS.
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Jan 10th, 2003, 12:04 AM
#8
New Member
C++ as web service
Another option is to create a web service in C++ in .Net and encapsulate your functionality there.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|