I ran into a situation where we need to include some javascript in our page. The code simply is this:
<script src='<noscript><img src=' border='0' width='1' height='1' alt='' /></noscript>
That process is recording tracking information so it has to run some code and then return something to the calling page.
Can you remotely generate actual javascript in this situation (which could make it dynamic based on parameters sent in to the source).
How would you return javascript from a called page? I tried using response.write and I got the javascript plus an entire html page behind it. I tried Server.Execute which is what we do with a gif file we return from a called page but that errros out.
<script src='<noscript><img src=' border='0' width='1' height='1' alt='' /></noscript>
That process is recording tracking information so it has to run some code and then return something to the calling page.
Can you remotely generate actual javascript in this situation (which could make it dynamic based on parameters sent in to the source).
How would you return javascript from a called page? I tried using response.write and I got the javascript plus an entire html page behind it. I tried Server.Execute which is what we do with a gif file we return from a called page but that errros out.