Código:
<%
'generás un número aleatorio entre 1 y 3 y se lo asignás a una variable
if nro_aleatorio = 1 then
%>
<!-- #include file='home_right_1.asp' -->
<%
end if
if nro_aleatorio = 2 then
%>
<!-- #include file='home_right_2.asp' -->
<%
end if
if nro_aleatorio = 3 then
%>
<!-- #include file='home_right_3.asp' -->
<% end if %>
esto, porque los includes de asp incluyen antes de que el código asp sea interpretado. otra opción es usando server.execute():
Código:
<%
'generás un número aleatorio entre 1 y 3 y se lo asignás a una variable
server.execute("home_right_" & nro_aleatorio & ".asp")
%>
Suerte