maybe you can put the source codes that you want to hide in a ASP file, then using:
to include the file in your page, if there are some variable calculated in the ASP file you want to display, you can use:
<script>
name = "<%=UserName%>"
document.write name
</script>
to get the server-side value to be display in client side.
Andraw
|