
February 23rd, 2004, 01:01 AM
|
|
Registered User
|
|
Join Date: Feb 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
help pls. response.write
I have an external file called help.asp which contains
<%If (Request("ID") = "Header_ID") Then%>
block of code
<%ElseIf (Request("ID") = "Footer_ID") Then%>
code block
<%End If%>
and file called index.asp which contains
<script language="javascript">
function open_Event_Name(){
popupWin = window.open('help.asp?ID=Header_ID', 'remote', 'width=300, height=200')
}
so on and so fort....
< a href="javascript  pen_Event_Name();">Link</a>
it worked properly but what i wanted is that instead of using popup window, I'd like the block of code from help.asp to be included in my <body></body> block or like my header or footer that is dynamicaly changed by a link. Thank you very much for your help.
|