Suponiendo que el valor de la variable f sea 1
Código HTML:
<% if f = "1" then %> Badajoz <% else if f ="1" then %> Caceres <% else if f = "1" then %> Sevilla <% end if end if end if %>
Código HTML:
<% if f = "1" then %> Badajoz <% elseif f ="1" then %> Caceres <% elseif f = "1" then %> Sevilla <% end if %>
Como se ve en ambos casos se imprime lo mismo, pero ¿cuál de las dos está más optimizada o no hay diferencia entre una u otra?
Gracias