Forum Moderators: open

Message Too Old, No Replies

problem running .aspx

         

antonyw

4:26 pm on Aug 18, 2006 (gmt 0)

10+ Year Member



Here's a strange thing. Something that worked, stopped working after a reboot.

Here's what i have in a aspx page -

<html>...
<iframe name="command" src="HelloWorld.aspx" </iframe>

this worked - the aspx file was processed by the server.

then it stopped and doesn't touch the aspx at all. However, doing this -

<iframe name="command" src="HelloWorld.HTM" </iframe>

does work - but is no use as any <%= flags %> don't get processed :)

Any tips on where i look to try and get this working again.

/Me baffled :(

tony

dimeric

11:40 pm on Aug 29, 2006 (gmt 0)

10+ Year Member



Hi

When you say it doesnt touch it what do you mean? Is it giving a 404 error or is it showing some sort of error message?

Easy_Coder

2:28 am on Aug 30, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You probably already checked this but did you realize that the iframe tag was not closed properly?

This:
<iframe name="command" src="HelloWorld.HTM" </iframe>

should be more like this right?
<iframe name="command" src="HelloWorld.HTM"></iframe>