Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

server behaviour not working in frame

Status
Not open for further replies.

toeter

Technical User
Apr 29, 2003
33
DE
My server behaviour (insert record) is not working within a frame page although it is working just fing when I use it in a no-frames asp page

what can be the reason for this?

thx, toeter
 
the problem has evolved to this:

Yes I use a form, within this, a hidden field form object with a value "discman" and a submit button

when I use the submit button, "discman" is send to my database (access) with the use of a insert record server behaviour

I saved this page as an asp page

but when I put this page within a framepage (2 frames: top and bottem) and preview it, it shows code instead of the form with the submit button...

I just don't get this, but hey, I'm a newbie

 
okay, so the hidden field with a value of discman is inserted into your DB woith a INSERT INTO command. If this page is display on its own the ofmr displays, and you can submit and the value goes in the table, but if you make it a framed page all you see if code like < html >< body > etc etc, you frameset page syntax is correct?
Is your frameset code before the body tag in the frameset document?

Let me know, i'm watching the post
 
this the code for the frameset, so the frameset code is befor the body


<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot; &quot;<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<frameset rows=&quot;*,80&quot; frameborder=&quot;NO&quot; border=&quot;0&quot; framespacing=&quot;0&quot;>
<frame src=&quot;top.asp&quot; name=&quot;mainFrame&quot;>
<frame src=&quot;bottem.asp&quot; name=&quot;bottomFrame&quot; scrolling=&quot;NO&quot; noresize>
</frameset>
<noframes><body>

</body></noframes>
</html>
 
and another thing when I put &quot;live data&quot; in views DW says: this features is used for documents that run on your testing server, would you like to change the type of the current page => ok, but I did this already the page is a ASP (Javascript) page

the problem is that the asp and html code is not send to the testing server which gives back plain html....

when the page is viewed in preview the browser sees the code as plain text...

so my pages within my framepage need to be send (or executed) on my testing server, but I don't know how...

can you set maybe a target where your page has to send to (and executed)??

thx, Toeter
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top