ASP web-type stuff

Dan Green dgreen at kryten.kitenet.net
Wed Apr 5 13:51:04 EDT 2000


Ah. I suppose I should have made myself more clear. What I meant was that
I was interested in writing a CGI/FastCGI type script so that the same
code could be used under Apache/Netscape Enterprise/insert your favorite
unix web server here. I already have a prototype working under Apache with
a CGI redirect. I'd like to write interfaces to httpdapy and PyApache as
well.

In article <8cfea6$71$1 at gxsn.com>, Richard Chamberlain wrote:
>Hi Dan,
>
>ASP is not language dependent, most of the stuff you'll see is written in
>VBScript or JScript but you can actually configure it to use other
>languages.
>
>See http://starship.python.net/crew/pirx/asp/py_asp.html to show you how to
>use Python with ASP.
>
>Richard
>
>"Dan Green" <dgreen at kryten.kitenet.net> wrote in message
>news:RZyG4.3061$9o.5812531 at news.magma.ca...
>> Ahoy, folks.
>> I was looking over things like Embperl and Apache::ASP and liked the
>> idea. I would like the idea more if I could do with python. So I had a
>> couple of questions:
>>
>> Is there such a thing?
>> Is there interest in such a thing?
>> Does anbody want to hear about my 75 lines of code hack that basically
>does
>> the trick, but needs a lot of work?
>>
>> If nobody cares at all, I'll just shut up and go home. :)
>>
>> For those of you who have no idea what I'm talking about, it's basically
>an
>> alternative to CGI that allows you to embed the code right into the HTML.
>>
>> something like this:
>>
>> <HTML>
>> <BODY>
>> <%  for i in range(5): %>
>> Loop item <%= i %><BR>
>> </BODY>
>> </HTML>
>>
>> would look like this when called from a browser:
>>
>> <HTML>
>> <BODY>
>> Loop item 1<BR>
>> Loop item 2<BR>
>> Loop item 3<BR>
>> Loop item 4<BR>
>> Loop item 5<BR>
>> </BODY>
>> </HTML>
>>
>> Let me know. If you're interested, please e-mail me.
>>
>> --
>> Dan Green           | "So What? It's your problem to learn to live with,
>> Developer           |  destroy us, or make us saints."
>> Rewind Technologies |  -- Ministry, "So What?"
>
>


-- 
Dan Green           | "So What? It's your problem to learn to live with,
Developer           |  destroy us, or make us saints."
Rewind Technologies |  -- Ministry, "So What?"



More information about the Python-list mailing list