| Author | Topic: powered by waa |
---|
| Claudio Driussi | powered by waa
on Mon, 17 Jan 2005 08:56:18 +0100I am trying WAA in this days.
I see that footer() method of html3 object write always
the "Powered by WAA" logo, can i change this footer with
my own?
Thanks in advance.
Claudio Driussi |
| Thomas Braun | Re: powered by waa
on Mon, 17 Jan 2005 09:34:35 +0100Claudio Driussi wrote:
> I am trying WAA in this days.
>
> I see that footer() method of html3 object write always
> the "Powered by WAA" logo, can i change this footer with
> my own?
Simply use the :Put() method instead to write the footer.
You can also create a customized html3 class and overwrite the footer()
method with your own code:
Method MyHtml3:Footer( cFooter )
If VALTYPE(cFooter) = "C"
::Put( cFooter )
EndIF
::Put( "</body></html>" )
RETURN NIL
HTH
Thomas Braun |
| Claudio Driussi | Re: powered by waa
on Mon, 17 Jan 2005 09:47:34 +0100Thomas Braun wrote:
> Simply use the :Put() method instead to write the footer.
Many thanks, Thomas. I guess it was a FAQ it was'nt?
Claudio. |
| Thomas Braun | Re: powered by waa
on Mon, 17 Jan 2005 13:15:25 +0100Claudio Driussi wrote:
>> Simply use the :Put() method instead to write the footer.
>
> Many thanks, Thomas. I guess it was a FAQ it was'nt?
Yes, it was
regards
Thomas |