1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <%
if request.QueryString("Id")<>"" then%>
<frameset rows="55,*" cols="*" framespacing="0" frameborder="no" border="0">
<frame src="Haut.asp" name="IndextopFrame" scrolling="NO" noresize >
<frameset rows="*" cols="186,*" framespacing="0" frameborder="no" border="0" bordercolor="#339933">
<frame src="menuGauche.asp" name="IndexleftFrame" scrolling="NO" noresize>
<frame src="Intervention_validation.asp?Id=<%=request.QueryString("Id")%>" name="IndexmainFrame">
</frameset>
</frameset><noframes></noframes>
<%else%>
<frameset rows="55,*" cols="*" framespacing="0" frameborder="no" border="0">
<frame src="Haut.asp" name="IndextopFrame" scrolling="NO" noresize >
<frameset rows="*" cols="186,*" framespacing="0" frameborder="no" border="0" bordercolor="#339933">
<frame src="menuGauche.asp" name="IndexleftFrame" scrolling="NO" noresize>
<frame src="Accueil.asp" name="IndexmainFrame">
</frameset>
</frameset><noframes></noframes>
<%end if%> |