Ask a Question related to ASP, Design and Development.
-
luu duong #1
Can a asp page post data to another asp page inside frameset?
I know this is probably easy but here is the details. I have an asp
page that is not inside a frameset. I want to post data to another asp
page that is inside a frameset. So firstpage.asp has
action="response.htm" target="results".
response.htm...
<HTML>
<FRAMESET ROWS="50%,50%">
<FRAME SRC="header.asp" NAME="fTop">
<FRAME SRC="another.asp" NAME="results">
</FRAMESET>
</HTML>
I cannot put firstpage.asp into the frameset because it takes data
from a outside page and I can only specify the return url from that
outside page to firstpage.asp. This needs to stay within one window
(ie no opening up new windows).
TIA
Luu
luu duong Guest
-
Frameset page cannot be previewed remotely
Hello, I've been using frameset and testing the web pages locally. It worked fine until I added a PHP page to get data dynamically from a... -
Email form data AND post to a page
Newbie here... Can anyone help me? I am able to email form data successfully via CFmail upon submit. I am able to post the data to a page after... -
LWP POST - source page received istead of data
Hello Group, I am new to perl world and especially html. I'm trying to get data from my http server. But instead of expected data I get source... -
Getting data from a usercontrol before containing page ends its page load
How do I load a user control in a web form first, so that the web form's page_load acts according to events on the user control? In my code... -
HELP: No POST data found from a ASPX Script HTTPWebRequest into a PHP Page
We are working with a vendor who is trying to post some some XML data to us. They are using an ASPX script to post to a PHP page of ours. The... -
Dan Brussee #2
Re: Can a asp page post data to another asp page inside frameset?
On 7 Oct 2003 14:40:39 -0700, [email]luu_duongtakeout@hotmail.com[/email] (luu duong)
wrote:
While I disagree with the use of frames...>I know this is probably easy but here is the details. I have an asp
>page that is not inside a frameset. I want to post data to another asp
>page that is inside a frameset. So firstpage.asp has
>action="response.htm" target="results".
>
>response.htm...
><HTML>
><FRAMESET ROWS="50%,50%">
><FRAME SRC="header.asp" NAME="fTop">
><FRAME SRC="another.asp" NAME="results">
></FRAMESET>
></HTML>
>
>I cannot put firstpage.asp into the frameset because it takes data
>from a outside page and I can only specify the return url from that
>outside page to firstpage.asp. This needs to stay within one window
>(ie no opening up new windows).
>
A frameset file is no different than any other HTML file except for
what is inside. Therefore, you can use an ASP file there too. Change
respose.htm to respose.asp and pass the querystring value passed to it
to the another.asp file inside it's "results" frame.
From firstpage.asp, your post will be...
action="response.asp"
I will assume here that you have a form text box named "MyID".
In response.asp...
<HTML>
<FRAMESET ROWS="50%,50%">
<FRAME SRC="header.asp" NAME="fTop">
<FRAME SRC="another.asp?MYID=<%=request.form("MyID")%>"
NAME="results">
</FRAMESET>
</HTML>
Dan Brussee Guest
-
luu duong #3
Re: Can a asp page post data to another asp page inside frameset?
Yes, your method would work, but what if I wanted to post the
variables to another.asp because it is a little more secure? Is this
possible with the current setup?
Thanks
Dan Brussee <dbrussee@NOSPAMnc.rr.com> wrote in message news:<2uc6ovot6ju42tl7bso6v4n622iocr3cof@4ax.com>. ..> On 7 Oct 2003 14:40:39 -0700, [email]luu_duongtakeout@hotmail.com[/email] (luu duong)
> wrote:
>>> >I know this is probably easy but here is the details. I have an asp
> >page that is not inside a frameset. I want to post data to another asp
> >page that is inside a frameset. So firstpage.asp has
> >action="response.htm" target="results".
> >
> >response.htm...
> ><HTML>
> ><FRAMESET ROWS="50%,50%">
> ><FRAME SRC="header.asp" NAME="fTop">
> ><FRAME SRC="another.asp" NAME="results">
> ></FRAMESET>
> ></HTML>
> >
> >I cannot put firstpage.asp into the frameset because it takes data
> >from a outside page and I can only specify the return url from that
> >outside page to firstpage.asp. This needs to stay within one window
> >(ie no opening up new windows).
> >
> While I disagree with the use of frames...
>
> A frameset file is no different than any other HTML file except for
> what is inside. Therefore, you can use an ASP file there too. Change
> respose.htm to respose.asp and pass the querystring value passed to it
> to the another.asp file inside it's "results" frame.
>
> From firstpage.asp, your post will be...
> action="response.asp"
>
> I will assume here that you have a form text box named "MyID".
>
> In response.asp...
> <HTML>
> <FRAMESET ROWS="50%,50%">
> <FRAME SRC="header.asp" NAME="fTop">
> <FRAME SRC="another.asp?MYID=<%=request.form("MyID")%>"
> NAME="results">
> </FRAMESET>
> </HTML>luu duong Guest



Reply With Quote

