Can I call a Classic ASP vbscript function and have it return html? I have a function that does some calculations, but I want it to send back the html as well. Will it do that? .
response.write MyFunction()
function myFunction()
return "<b>test</b>"
end function
I get a type mismatch error.
Second question, please, If this were php, can I send back html and do something like echo MyPHPFunction()?
I didn't know if php was different than asp/vbscript on this. It seems you can send just about anything around in php.
Thank you.