Hey Adam,
I have written the following code so it extracts information I require when an organisation registers:
<html> <body> <p> <p> <b>School IP address:</b> <%Response.Write(Request.ServerVariables("remote_addr"))%> </p> <b>Browser:</b> <%= Request.Browser.Browser %> </p> <b>Browser Version:</b> <%= Request.Browser.Version %> </p> <b>ActiveX Controls Enabled:</b> <%= Request.Browser.ActiveXControls %> </p> <b>Operating System:</b> <%= Request.Browser.Platform%><br> </body> </html> |
When the file is saved as a standalone ASPX file it works perfectly, however when I integrate it with Cute Chat's template page, I receive errors. Could you show me an example how the above code should be integrated with the template page? Thanks
Mike