Thank you, I will try that. My goal here is to learn enough
ASP/Perl to accomplish a specific goal with a web site we are
creating and then learn more ASP/Perl to incorporate it into other
sites I maintain. The script snippits I am finding on the web do
not contain the correct sytax to run on my server so I am trying to
learn the differences and it is all very confusing to a guy who
knows just enough about HTML (okay nothing really about it) to get
himself in trouble.
--- In [EMAIL PROTECTED], "Fagyal, Csongor" <[EMAIL PROTECTED]>
wrote:
> Hi Brent,
>
> ><html>
> ><title> sample </title>
> ><body>
> ><% $Response->Write ("Hello World") =Now () %>
> ></body>
> ></html>
> >
> >
> >
> What does
> $Response->Write("Hello World") = Now()
> supposed to do??
>
> First, $Response->Write("Hello World") is not supposed to be a
> leftvalue, so you cannot (shouldn't) assign a value to it.
> But your biggest problem is that there is now built-in function
called
> "Now" in Perl, as your page says "Undefined subroutine
> &Apache::ASP::Demo::Now called ..."
>
> I think you want
> <%
> $Response->Write("Hello World");
> $Response->Write(localtime(time));
> %>
>
> ...or something like that.
>
>
> - Cs.
>
>
> -------------------------------------------------------------------
--
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]