Jump to content
Fórum Script Brasil
  • 0

Comando P/ Incluir Paginas Em Outras.


PhoEniXFirE

Question

alguém pode me informar como é o comando em ASP para adicionar uma página à outra.

vamos dizer q eu tenha separado a minha página em três:

topo.asp

corpo.asp

menu.asp

E eu queria adicionar elas em uma outra página, mas n quero ultilizar como FRAMES, nem IFRAMES, quero q seja feito o adicionamento no SERVIDOR apartir de um script em ASP. O resultado vai ser todas as páginas em apenas uma, como se fosse uma só.

é tipo o comando se n me engano o nome é: INCLUDE, no PHP.

<html>

<head>

<title>Portal</title>

</head>

<body>

<? include=topo.php ?>

<? include=menu.php ?>

<? include=corpo.php ?>

</body>

</head>

</html>

é um comando simples, é apenas adicionar uma outra página nela.

Obrigado.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

você ta querendo que elas fiquem assim é :

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>

<html>

<head>

<title>Col&eacute;gio e Faculdade Atenas</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<!-- #include file = "ColStyle.css" -->

</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<!-- #include file = "ColTopo.asp" -->

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

    <td width="13%" valign="top">

<!-- #include file = "ColMenu.asp" -->

    </td>

<td width="87%" valign="top">

<!--#include file="ColEstFisAcad_int.asp" --></td>

</tr>

</table>

<!-- #include file = "ColDown.asp" -->

</body>

</html>

cara se for um arquivo na mesma pasta use

<!-- #include file = "meu arquivo.asp" --> agora se não se estiver fora da pasta

use

<!-- #include virtual =".../.../pasta/meu arquivo.asp" -->

e lembrando não pode ficar dentro das tags do asp(<% %>) somente fora.. ok

abraços

Link to comment
Share on other sites

  • 0

Use <!--#include file="suaArquivo.asp" -->

Entre as tags <head> e </head>

Tem como utilizar o comando

<!--#include file="suaArquivo.asp" -->

e colocar rotativo.

Uma hora abre o arquivo "suaArquivo.asp" e outra hora abrir "suaPagina.asp" ?

Obrigado

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...