Board index » Visual Studio » before .net
|
WPinder
|
|
WPinder
|
before .net
Visual Studio193
hey all, before .net, how did visual c++ developers develop for the internet? thanks, rodchar - |
| Alex
Registered User |
Wed Jun 27 12:04:17 CDT 2007
Re:before .net
"rodchar" wrote:
Quotebefore .net, how did visual c++ developers develop for the job. - |
| Brian
Registered User |
Wed Jun 27 14:03:17 CDT 2007
Re:before .net"rodchar" <rodchar@discussions.microsoft.com>wrote in message Quotehey all, internet? Brian - |
| rodchar
Registered User |
Wed Jun 27 15:08:04 CDT 2007
Re:before .net
so can you utilize unmanaged c++ any when developing internet applications?
"Brian Muth" wrote: Quote
|
| David
Registered User |
Wed Jun 27 15:17:59 CDT 2007
Re:before .net
rodchar wrote:
Quoteso can you utilize unmanaged c++ any when developing internet applications? I'm sure it will shock you (and not just you!) to learn that I have a whole web site built using classical CGI written in C++. -- David Wilkinson Visual C++ MVP - |
| Brian
Registered User |
Wed Jun 27 16:02:04 CDT 2007
Re:before .netQuote
David, you are true retro. I have to admit C++ isn't exactly the first tool _I_ pull out of the drawer when constructing a web site. To the OP, you may want to look up these terms: ASP, JSP, PHP, ColdFusion. Those are the first four that popped into my head. I'm sure there are plenty of others. Brian - |
| Tom
Registered User |
Wed Jun 27 18:38:43 CDT 2007
Re:before .net
I did some web stuff in MFC a while back, but I didn't find it satisfying
:o) I'm glad there are better ways to do these things these days. Tom "rodchar" <rodchar@discussions.microsoft.com>wrote in message Quotehey all, |
| William
Registered User |
Wed Jun 27 18:45:34 CDT 2007
Re:before .net
"rodchar" <rodchar@discussions.microsoft.com>wrote in message
Quoteso can you utilize unmanaged c++ any when developing "ISAPI extensions" to IIS with C++. I could be wrong but I think that MFC and ATL both may have some classes that take the sting out of the doing the job from scratch. Regards, Will www.ivrforbeginners.com - |
| Ben
Registered User |
Wed Jun 27 22:35:45 CDT 2007
Re:before .net"Brian Muth" <bmuth@mvps.org>wrote in message Quote> PHP is one) perl, sometimes python. QuoteThose are the first four that popped into my head. I'm sure there are |
| Ben
Registered User |
Wed Jun 27 22:37:30 CDT 2007
Re:before .net"rodchar" <rodchar@discussions.microsoft.com>wrote in message Quotehey all, controls were written in C++. TCP/IP in general is usually targetted by BSD sockets which have a C interface which is at least as simple from C++ as any other language. Quote
|
| Tom
Registered User |
Thu Jun 28 08:57:58 CDT 2007
Re:before .net
Hi Will,
msdn2.microsoft.com/en-us/library/w4t598dt(VS.80).aspx">msdn2.microsoft.com/en-us/library/w4t598dt(VS.80).aspx But, I've used these and I would advise people to use the more modern .NET code for doing web programming. These are nice to have if you have no other choice. Tom "William DePalo [MVP VC++]" <willd.no.spam@mvps.org>wrote in message Quote"rodchar" <rodchar@discussions.microsoft.com>wrote in message |
| rodchar
Registered User |
Thu Jun 28 09:06:01 CDT 2007
Re:before .net
thanks everyone for the feedback.
"rodchar" wrote: Quotehey all, |
| Alexander
Registered User |
Thu Jun 28 12:20:47 CDT 2007
Re:before .net
I still develop Internet applications in C++. I don't touch the
WWW with a ten-foot pole though - I use plain sockets. -- ===================================== Alexander Nickolov Microsoft MVP [VC], MCSD email: agnickolov@mvps.org MVP VC FAQ: vcfaq.mvps.org">vcfaq.mvps.org ===================================== "rodchar" <rodchar@discussions.microsoft.com>wrote in message Quotehey all, - |
| William
Registered User |
Thu Jun 28 16:23:43 CDT 2007
Re:before .net
"Tom Serface" <tom.nospam@camaswood.com>wrote in message
QuoteBut, I've used these and I would advise people to use the more modern .NET a) scalability is at the top of your requirements and b) you are really good ;-) Regards, Will - |
| Tom
Registered User |
Thu Jun 28 17:19:31 CDT 2007
Re:before .net
Well, unfortunately, well, never mind...
Tom "William DePalo [MVP VC++]" <willd.no.spam@mvps.org>wrote in message Quote"Tom Serface" <tom.nospam@camaswood.com>wrote in message |
| Ben
Registered User |
Thu Jun 28 23:23:38 CDT 2007
Re:before .net"William DePalo [MVP VC++]" <willd.no.spam@mvps.org>wrote in message Quote"Tom Serface" <tom.nospam@camaswood.com>wrote in message limit on project scalability. Quote
|
| William
Registered User |
Thu Jun 28 23:56:11 CDT 2007
Re:before .net
"Ben Voigt [C++ MVP]" <rbv@nospam.nospam>wrote in message
QuoteSadly, depending on the availability of really good C++ programmers puts a exist - there are simply more Morts and Elvises than Einsteins. Regards, Will - |
| Tom
Registered User |
Fri Jun 29 01:22:37 CDT 2007
Re:before .net
I've recently started working on an ASP.NET project. At first I found it to
be very confusing, mostly because the only real web programming I've done before has been with Perl, but I'm starting to get the hang of it. I'm not sure it takes and Einstein, but there certainly are a lot of nuances. Tom "William DePalo [MVP VC++]" <willd.no.spam@mvps.org>wrote in message Quote"Ben Voigt [C++ MVP]" <rbv@nospam.nospam>wrote in message |
| rodchar
Registered User |
Mon Jul 02 14:28:01 CDT 2007
Re:before .net
thanks everyone for a thorough discussion.
"rodchar" wrote: Quotehey all, |
| Gerry
Registered User |
Thu Jul 05 15:24:49 CDT 2007
Re:before .net
Hi,
It depends on what you mean by "internet". Most internet servers and the modules they use, are still based on C++ and unmanaged code, but if you mean "the web", it's usually separated into User Interface (UI), Business Logic and Back-end data. The UI is usually HTML/JavaScript but can be dynamically controlled by a scripting language such as PHP, ASP The Business Logic could be something like PERL, JAVA, COM/C++ The back-end could be mySQL, Postgres or SQLServer You can also create pure CGI exe files with unmanaged C++ and both Apache and IIS support creating filters using C++. In my view, .NET doesn't really change the fundamentals of web application design. rodchar wrote: Quotethanks everyone for a thorough discussion. -- Gerry Hickman (London UK) - |
