[ASP][VBS] Question sur if et false
Salut,
Je viens de récupèrer un intranet en asp aujourd'hui, je vais devoir rajouter certaines parties et la je viens de voir une instruction un peu bizarre dans le code, si quelqu'un peut m'expliquer à quoi ca sert ....
voici le code :
Code:
1 2 3 4 5 6
|
<% if(false) then %>
<table width="150" cellspacing="0" cellpadding="0" border="0" style="font-size=10"> <tr><td height="1"
bgcolor="#AAAAAA"></td></tr>
....
<% end if %> |
Et j'ai aussi ca
Code:
1 2 3 4 5 6
|
<% if(Niveau="d1" and false) then %>
<table width="150" cellspacing="0" cellpadding="0" border="0" style="font-size=10">
<tr><td height="1" bgcolor="#AAAAAA"></td></tr>
....
<% end if %> |
Je pense que ces instructions ne sont jamais exécutées non ?
Merci d'avance
Laurent