@ * - server side comment:
If you have a code like this:
<p>
/* comment 1 */
@* comment 2 *@
@{ /* comment 4 */ }
</p>
Comment 1 will not work because you are not in server mode. This code will be sent to the browser and the browser will show it because / * is not a html comment.
A comment will also be sent to the client. And I even think that it will be parsed and executed on the server if it contains @ blocks.
2 4 . Nr 4 .