PDA

Click to See Complete Forum and Search --> : hide HTML code?


jsayson
Jul 31st, 2000, 03:04 PM
Anyone knows how to hide a HTML codes? Thanks!!!

REM
Jul 31st, 2000, 03:15 PM
You can comment sections out like this, in effect hiding the code.


<!-- Comments go here -->


Is this what you mean?

Laterz

REM

Zaf Khan
Aug 1st, 2000, 11:30 PM
You can use asp to generate the basic html code on the fly and store your precious code modules seperately in a completely different folder

Cos usually thats what makes the difference the DHTML, thats what most plagiarists are after

DocZaf
{;->

Dim
Aug 2nd, 2000, 03:51 AM
I only know how to do it in Java off the top of my head:

<script language="javascript">
function click() {
if (event.button==2) {
alert('Sorry but this function is unavailable')
}
}
document.onmousedown=click
</script>


Hope that helps,
D!m

jsayson
Aug 2nd, 2000, 07:34 AM
Thank you guys, I just bought a book about ASP and decided that its the best solution to my problem.