Click here to Skip to main content
15,899,937 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: IFrames causing problems with clients browser Pin
Chris McGlothen24-Jan-08 9:46
Chris McGlothen24-Jan-08 9:46 
QuestionNot able to get value of fiels by using $_POST in PHP Pin
Vipin Chauhan24-Jan-08 1:53
Vipin Chauhan24-Jan-08 1:53 
GeneralRe: Not able to get value of fiels by using $_POST in PHP Pin
dfz24-Jan-08 5:51
dfz24-Jan-08 5:51 
QuestionShould Be #1 on JScript Tutorials Pin
bertieisaacm23-Jan-08 23:26
bertieisaacm23-Jan-08 23:26 
Generalsalam , information sent again after refresh Pin
Mohammed Amine23-Jan-08 22:11
Mohammed Amine23-Jan-08 22:11 
GeneralRe: salam , information sent again after refresh Pin
Paddy Boyd23-Jan-08 23:29
Paddy Boyd23-Jan-08 23:29 
GeneralRe: salam , information sent again after refresh Pin
Mohammed Amine24-Jan-08 10:58
Mohammed Amine24-Jan-08 10:58 
GeneralNeed help with Problem with Form post to iFrame within Frame (Firefox) Pin
Member 372048723-Jan-08 8:38
Member 372048723-Jan-08 8:38 
I have a Frames page. Inside one of the frames is a page with a form and an iFrame. On this page upon page load I post the form to the iFrame. Two problems happen in FireFox, but not in IE:

1) FireFox constantly shows a "refreshing" status i.e. if you hover the mouse near the menus on top, it constantly shows the hourglass.

2) Refresh the page in Firefox. First it gives a warning "The page you are trying to load contains POSTDATA. If you resend the data, any action the form carried out (such as a search or online purchase) will be repeated. To resend the data click OK. Otherwise, click Cancel."

And then it loads the contents of Frame 2 inside Frame 1.

Is there any solution to this problem? What am i doing wrong?

If anyone can help, I will be very grateful.

Thanks

Here is the code:There are 4 pages.

Main.asp:

<%@ Language=VBScript %><%
OPTION EXPLICIT
Response.Buffer = true
Response.Expires= -1
%>
<html>
<head>
<title>
</title>
</head>
<frameset cols="50%,50%">
<frame src="dummy.htm"></frame>
<frame src="A.asp"></frame>
</frameset>
</html>


dummy.htm:

<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY bgcolor="#E6E6E6"><P>&nbsp;</P></BODY>
</HTML>


A.asp:

<%@ Language=VBScript %><%
OPTION EXPLICIT
Response.Buffer = true
Response.Expires= -1
%>
<html>
<head>
<title>
</title>
<script language="javascript">
function init(){
document.form1.action = "B.asp";
document.form1.target = "F1" ;
document.form1.submit();
}
</script>
</head>
<body onload="init();">
<form name="form1" method="post">
<iframe name="F1" src="dummy.htm"></iframe>
</form>
</body>
</html>


B.asp:

<%@ Language=VBScript %><%
OPTION EXPLICIT
Response.Buffer = true
Response.Expires= -1
%>
<html>
<head>
<title>
</title>
</head>
<body>
This is B.asp
</body>
</html>


Please help.
GeneralRe: Need help with Problem with Form post to iFrame within Frame (Firefox) Pin
Member 372048725-Jan-08 10:31
Member 372048725-Jan-08 10:31 
QuestionProblems updating contents on web form. Pin
faesel23-Jan-08 2:19
faesel23-Jan-08 2:19 
GeneralRe: Problems updating contents on web form. Pin
Johnny ²23-Jan-08 21:46
Johnny ²23-Jan-08 21:46 
GeneralRe: Problems updating contents on web form. Pin
faesel24-Jan-08 0:14
faesel24-Jan-08 0:14 
GeneralRe: Problems updating contents on web form. Pin
Paddy Boyd24-Jan-08 0:01
Paddy Boyd24-Jan-08 0:01 
GeneralPreventing (or reducing) Contact Form abuse Pin
BungleBonce23-Jan-08 1:52
BungleBonce23-Jan-08 1:52 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
Vasudevan Deepak Kumar23-Jan-08 2:05
Vasudevan Deepak Kumar23-Jan-08 2:05 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
BungleBonce23-Jan-08 2:34
BungleBonce23-Jan-08 2:34 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
Vasudevan Deepak Kumar24-Jan-08 4:19
Vasudevan Deepak Kumar24-Jan-08 4:19 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
BungleBonce24-Jan-08 4:40
BungleBonce24-Jan-08 4:40 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
Paul Conrad24-Jan-08 6:41
professionalPaul Conrad24-Jan-08 6:41 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
Paul Conrad24-Jan-08 6:40
professionalPaul Conrad24-Jan-08 6:40 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
BungleBonce24-Jan-08 8:08
BungleBonce24-Jan-08 8:08 
GeneralRe: Preventing (or reducing) Contact Form abuse Pin
Paul Conrad24-Jan-08 8:20
professionalPaul Conrad24-Jan-08 8:20 
Questionhow to make popup window active Pin
chithra.r22-Jan-08 23:25
chithra.r22-Jan-08 23:25 
AnswerRe: how to make popup window active Pin
Vasudevan Deepak Kumar23-Jan-08 2:06
Vasudevan Deepak Kumar23-Jan-08 2:06 
GeneralRe: how to make popup window active Pin
chithra.r23-Jan-08 17:22
chithra.r23-Jan-08 17:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.