1.

Under Given Circumstances, My Cgi Should Link To Another Site. How To Implement This?

Answer»

Usually the response from your CGI looks as FOLLOW:

Content-type: text/HTML
blank line
<html&GT;
... etc. ...
</html>

A very simple way to have your CGI response linking to another SITE is that of providing just the following response:

Location: http://URL
blank line

If you WHISH, you may run our example and display its sources.

Usually the response from your CGI looks as follow:

Content-type: text/html
blank line
<html>
... etc. ...
</html>

A very simple way to have your CGI response linking to another site is that of providing just the following response:

Location: http://URL
blank line

If you whish, you may run our example and display its sources.



Discussion

No Comment Found