473,503 Members | 5,004 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What am I doing wrong here. Simple statement. Novice Question.

HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly. so I need a way doing this. so I check to see if the ifp value is
null and if so then assign it a value. is this correct?
Thanks in advance :)

Paul
Jul 23 '05 #1
17 2611
"Paul" <pa***********@sympatico.ca> wrote in message
news:uL*******************@news20.bellglobal.com.. .
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly. so I need a way doing this. so I check to see if the ifp value is
null and if so then assign it a value. is this correct?
Thanks in advance :)

Paul

As you don't state the error I may wrong but if, as I expect, it is "object
expected" then it's because you have a capital "I" in "If" which should be
lowercase:

if (ifp == "")
{
ifp = "default.htm";
}

In general all JavaScript keywords start with lowercase letters, built-in
objects such as "String" are one such exception, and usually if two or more
words are concatenated all but the first have an uppercase first letter, e.g
"toLowerCase". An exception to this are the operators such as "typeof".
--
As a side point, although in this instance the syntax is the same, Java and
JavaScript are two different beasts and I suggest restricting your choice of
groups to the relevant ones.

Joe (MVP)

https://mvp.support.microsoft.com/pr...8-8741D22D17A5

Jul 23 '05 #2
ASM
Paul wrote:
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly.
if(!(parent.frames['myIframe'])
self.location="http//server.name/site.name/folder/default.html";

if main page doesn't have an iframe (or frame) nammed "myIframe"
then
load in same window the file 'default.htm'
whom path is "http//server.name/site.name/folder/"

or :
if(!(parent.frames['myIframe'])
top.location="http//server.name/site.name/folder/default.html";

if parent page doesn't have an iframe (or frame) nammed "myIframe"
then
load in main window the file 'default.htm'
whom path is "http//server.name/site.name/folder/"
so I need a way doing this. so I check to see if the ifp value is
null and if so then assign it a value. is this correct?


from where comes ifp (how does it get ist value) ?
what do you do with this value (after correction or not) ?
--
Stephane Moriaux et son [moins] vieux Mac
Jul 23 '05 #3
ASM
ASM wrote:

if(!(parent.frames['myIframe'])
if(!(parent.frames['myIframe']))
or :
if(!(parent.frames['myIframe'])


if(!(parent.frames['myIframe']))

--
Stephane Moriaux et son [moins] vieux Mac
Jul 23 '05 #4
Paul wrote:
<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT> <snip> ... . so I check to see if the ifp
value is null ...

<snip>

The algorithm for the type-converting comparison operator - == - (ECMA
262 3rd edition; section 11.9.3) does not allow any string value
(including the empty string) to equal null. So whatever you are
attempting you are not seeing if ifp is null.

Richard.
Jul 23 '05 #5
Hi! and thanks for responding. basically I have a menu with sub-menu options
which are htm file to go into an iframe.
I need it to be so I can do this from any page in my site. this is why I
need a script to pass the value.

In my menu I use the following code to send the sub-menu options.

Sub-menu option 1: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file1_for_iframes.htm

Sub-menu option 2: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file2_for_iframe.htm

Now for the MainIframepage.asp file I created the following Iframe like
this---and it works fine.

<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001" width="750px"
height="920px" scrolling="yes" id="Iframe001">If you are reading this then
your browser cannot view Iframe, Please upgrade you browser. </iframe>

Now the problem is for me is what happens if someone enters the page without
clicking an sub-option. ( Like for instance, coming from a bookmark OR if
the session times out.) he will get an empty Iframe.

That's what I need the default value for. :) How can I accomplish this?

Paul

"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42**********************@news.wanadoo.fr...
Paul wrote:
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly.


if(!(parent.frames['myIframe'])
self.location="http//server.name/site.name/folder/default.html";

if main page doesn't have an iframe (or frame) nammed "myIframe"
then
load in same window the file 'default.htm'
whom path is "http//server.name/site.name/folder/"

or :
if(!(parent.frames['myIframe'])
top.location="http//server.name/site.name/folder/default.html";

if parent page doesn't have an iframe (or frame) nammed "myIframe"
then
load in main window the file 'default.htm'
whom path is "http//server.name/site.name/folder/"
so I need a way doing this. so I check to see if the ifp value is null
and if so then assign it a value. is this correct?


from where comes ifp (how does it get ist value) ?
what do you do with this value (after correction or not) ?
--
Stephane Moriaux et son [moins] vieux Mac

Jul 23 '05 #6
HI! thanks, I saw that little one after I posted it. but there is still a
problem. and the other post answered that one.

Do you know of another way to do it. ( other than converting the string and
then back again )?

Thanks in advance :)

Paul
"Joe Fawcett" <jo********@newsgroups.nospam> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
"Paul" <pa***********@sympatico.ca> wrote in message
news:uL*******************@news20.bellglobal.com.. .
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly. so I need a way doing this. so I check to see if the ifp value
is null and if so then assign it a value. is this correct?
Thanks in advance :)

Paul

As you don't state the error I may wrong but if, as I expect, it is
"object expected" then it's because you have a capital "I" in "If" which
should be lowercase:

if (ifp == "")
{
ifp = "default.htm";
}

In general all JavaScript keywords start with lowercase letters, built-in
objects such as "String" are one such exception, and usually if two or
more words are concatenated all but the first have an uppercase first
letter, e.g "toLowerCase". An exception to this are the operators such as
"typeof".
--
As a side point, although in this instance the syntax is the same, Java
and JavaScript are two different beasts and I suggest restricting your
choice of groups to the relevant ones.

Joe (MVP)

https://mvp.support.microsoft.com/pr...8-8741D22D17A5

Jul 23 '05 #7
ASM
Paul wrote:
Hi! and thanks for responding. basically I have a menu with sub-menu options
which are htm file to go into an iframe.
sub-menu by options from a select ?
because if it is by JS, basicaly,
the main menu must send a page with sub-menus linked in it
I need it to be so I can do this from any page in my site. this is why I
need a script to pass the value.

In my menu I use the following code to send the sub-menu options.

Sub-menu option 1: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file1_for_iframes.htm
and ? where is the problem ? it is basic html ...

<form action="MainIframepage.asp" target="Iframe001" method="get">
<select name="ifp">
<option selected="selected"
value="Template_Code_Files/default_menu.htm">Main Menu</option>
<option
value="Template_Code_Files/file1_for_iframe.htm">sub-menu 1</option>
<option
value="Template_Code_Files/file2_for_iframe.htm">sub-menu 2</option>
</select>
<input type="submit" value="GO">
</form>
Now for the MainIframepage.asp file I created the following Iframe like
this---and it works fine.

<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001" width="750px"
height="920px" scrolling="yes" id="Iframe001">If you are reading this then
your browser cannot view Iframe, Please upgrade you browser.
Sorry I am not to your orders !
If you want I pay a visit to your site
please give me a page I can read !
That't to say insert betwen tags of iframe a link to the plan of site
with links in basic html sending in self window.
Your way of doing is a real expression of incorrection and unpoliteness

</iframe>
Now the problem is for me is what happens if someone enters the page without
clicking an sub-option. ( Like for instance, coming from a bookmark OR if
the session times out.) he will get an empty Iframe.


Do not understand :
- the link is on the page (even in an option of select)
- the mechanism of send is in the browser
If there is a question of time spent on site it is the job of your asp :
time out or time unexisting ? hop ! go to page default
and ... I know anything about asp.

your [Request.QueryString("ifp")] has to enquiry if 'ifp' exists
if not : hop -> default page
if it is : hop ! what is write in url (remenber : target="Iframe001")

as I know anything in asp
I would have given the default page to the src of iframe
<iframe src="default.htm" name="Iframe001" width="750px" blah>
Activing menu will send a page to the iframe with variable ifp to obey

The querry about ifp and its different answeres would have to be in your
"MainIframepage.asp"

Is there not a ng for asp ?

--
Stephane Moriaux et son [moins] vieux Mac
Jul 23 '05 #8
Hi! Thanks for responding.

I wanted to use JS for ASP. I am a beginner in JS and ASP. I can here
because I needed to know JS.

I have narrowed it down bit more as I have being reading all day but I am
still of coarse shaky, so please bare with me.

Here's where I am at now. I am testing this page.. and please tell me where
I am going wrong.
If you view this page the var ifp gets written out on screen ( so its not
empty ) but it does not work in the Request.Query and I don't know why.
this is really puzzling me. I have being at this all day. I know its a
string as Its being displayed on screen. and Request.QueryString works when
I pass the value from another page. why does it not accept the value that I
have declared?

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Test Page</title>
<script language="JavaScript">
var
ifp="http://www.webcandesign.com/Without_fl/html/Premium_Templates_test.asp?ifp=http://office.microsoft.com/en-us/default.aspx";
if (typeof(ifp) == "undefined"){
document.write ("Type of x is undefined");}
else{
document.write (ifp);}
</script>
</head>
</html>
<body>
<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser. </iframe>
</body>
</html>
Ps. I hope I did not come off being rude before by using Capitals letters, I
sometimes use it to point out things so that it does not get overlooked. I
will try to keep away from using that method :)

Paul

"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42***********************@news.wanadoo.fr...
Paul wrote:
Hi! and thanks for responding. basically I have a menu with sub-menu
options which are htm file to go into an iframe.


sub-menu by options from a select ?
because if it is by JS, basicaly,
the main menu must send a page with sub-menus linked in it
I need it to be so I can do this from any page in my site. this is why I
need a script to pass the value.

In my menu I use the following code to send the sub-menu options.

Sub-menu option 1: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file1_for_iframes.htm


and ? where is the problem ? it is basic html ...

<form action="MainIframepage.asp" target="Iframe001" method="get">
<select name="ifp">
<option selected="selected"
value="Template_Code_Files/default_menu.htm">Main Menu</option>
<option
value="Template_Code_Files/file1_for_iframe.htm">sub-menu 1</option>
<option
value="Template_Code_Files/file2_for_iframe.htm">sub-menu 2</option>
</select>
<input type="submit" value="GO">
</form>
Now for the MainIframepage.asp file I created the following Iframe like
this---and it works fine.

<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser.


Sorry I am not to your orders !
If you want I pay a visit to your site
please give me a page I can read !
That't to say insert betwen tags of iframe a link to the plan of site with
links in basic html sending in self window.
Your way of doing is a real expression of incorrection and unpoliteness

</iframe>

Now the problem is for me is what happens if someone enters the page
without clicking an sub-option. ( Like for instance, coming from a
bookmark OR if the session times out.) he will get an empty Iframe.


Do not understand :
- the link is on the page (even in an option of select)
- the mechanism of send is in the browser
If there is a question of time spent on site it is the job of your asp :
time out or time unexisting ? hop ! go to page default
and ... I know anything about asp.

your [Request.QueryString("ifp")] has to enquiry if 'ifp' exists
if not : hop -> default page
if it is : hop ! what is write in url (remenber : target="Iframe001")

as I know anything in asp
I would have given the default page to the src of iframe
<iframe src="default.htm" name="Iframe001" width="750px" blah>
Activing menu will send a page to the iframe with variable ifp to obey

The querry about ifp and its different answeres would have to be in your
"MainIframepage.asp"

Is there not a ng for asp ?

--
Stephane Moriaux et son [moins] vieux Mac

Jul 24 '05 #9
Sorry about the above.. I made a small copy error.

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Test Page</title>
<script language="JavaScript">
var
ifp="http://office.microsoft.com/en-us/default.aspx";
if (typeof(ifp) == "undefined"){
document.write ("Type of x is undefined");}
else{
document.write (ifp);}
</script>
</head>
</html>
<body>
<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser. </iframe>
</body>
</html>
--
Thanks in advance :)

Paul
"Paul" <pa***********@sympatico.ca> wrote in message
news:Ln********************@news20.bellglobal.com. ..
Hi! Thanks for responding.

I wanted to use JS for ASP. I am a beginner in JS and ASP. I can here
because I needed to know JS.

I have narrowed it down bit more as I have being reading all day but I am
still of coarse shaky, so please bare with me.

Here's where I am at now. I am testing this page.. and please tell me
where I am going wrong.
If you view this page the var ifp gets written out on screen ( so its not
empty ) but it does not work in the Request.Query and I don't know why.
this is really puzzling me. I have being at this all day. I know its a
string as Its being displayed on screen. and Request.QueryString works
when I pass the value from another page. why does it not accept the value
that I have declared?

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Test Page</title>
<script language="JavaScript">
var
ifp="http://www.webcandesign.com/Without_fl/html/Premium_Templates_test.asp?ifp=http://office.microsoft.com/en-us/default.aspx";
if (typeof(ifp) == "undefined"){
document.write ("Type of x is undefined");}
else{
document.write (ifp);}
</script>
</head>
</html>
<body>
<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser. </iframe>
</body>
</html>
Ps. I hope I did not come off being rude before by using Capitals letters,
I sometimes use it to point out things so that it does not get overlooked.
I will try to keep away from using that method :)

Paul

"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42***********************@news.wanadoo.fr...
Paul wrote:
Hi! and thanks for responding. basically I have a menu with sub-menu
options which are htm file to go into an iframe.


sub-menu by options from a select ?
because if it is by JS, basicaly,
the main menu must send a page with sub-menus linked in it
I need it to be so I can do this from any page in my site. this is why I
need a script to pass the value.

In my menu I use the following code to send the sub-menu options.

Sub-menu option 1: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file1_for_iframes.htm


and ? where is the problem ? it is basic html ...

<form action="MainIframepage.asp" target="Iframe001" method="get">
<select name="ifp">
<option selected="selected"
value="Template_Code_Files/default_menu.htm">Main Menu</option>
<option
value="Template_Code_Files/file1_for_iframe.htm">sub-menu 1</option>
<option
value="Template_Code_Files/file2_for_iframe.htm">sub-menu 2</option>
</select>
<input type="submit" value="GO">
</form>
Now for the MainIframepage.asp file I created the following Iframe like
this---and it works fine.

<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser.


Sorry I am not to your orders !
If you want I pay a visit to your site
please give me a page I can read !
That't to say insert betwen tags of iframe a link to the plan of site
with links in basic html sending in self window.
Your way of doing is a real expression of incorrection and unpoliteness

</iframe>

Now the problem is for me is what happens if someone enters the page
without clicking an sub-option. ( Like for instance, coming from a
bookmark OR if the session times out.) he will get an empty Iframe.


Do not understand :
- the link is on the page (even in an option of select)
- the mechanism of send is in the browser
If there is a question of time spent on site it is the job of your asp :
time out or time unexisting ? hop ! go to page default
and ... I know anything about asp.

your [Request.QueryString("ifp")] has to enquiry if 'ifp' exists
if not : hop -> default page
if it is : hop ! what is write in url (remenber : target="Iframe001")

as I know anything in asp
I would have given the default page to the src of iframe
<iframe src="default.htm" name="Iframe001" width="750px" blah>
Activing menu will send a page to the iframe with variable ifp to obey

The querry about ifp and its different answeres would have to be in your
"MainIframepage.asp"

Is there not a ng for asp ?

--
Stephane Moriaux et son [moins] vieux Mac


Jul 24 '05 #10
ASM
Paul wrote:
Hi! Thanks for responding.

I wanted to use JS for ASP. I am a beginner in JS and ASP. I can here
because I needed to know JS.
You can read posts to learn some JS
but, on my idea, you don't need it in this case.

what do you expect the Request.QueryString("ifp")
would do in src of iframe ? ==> nothing !

What asp documentation teach to you on this ?
<http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iissdk/html/3c778166-4a3c-4eda-b7cd-bb8557fe2de0.asp>
<http://authors.aspalliance.com/aspxtreme/sys/web/httprequestclassquerystring.aspx>
<http://docs.sun.com/source/817-2514-10/Ch9_ASPBuiltIn44.html>
<http://docs.sun.com/source/817-2514-10/Ch9_ASPBuiltIn45.html>
<http://www.serverwatch.com/tutorials/article.php/2174391>
did you try what I did give ?
(the menu in select of form with the associate iframe ?)

Last explanations :
In your home page the iframe has in its src a default page
Then you choice a menu (or not) and press button [GO]
the form calls your page.asp
completed automaticly with ?ifp=page_of_menu.htm
and page.asp will be send (after calculs on server) to the iframe

the Query.String must be in your page.asp

this page.asp could look like :

<html>
<body>
<table>
<tr>
<th>Elément</th>
<th>Valeur</th>
</tr>
<%
For Each chaine In Request.QueryString

If Request.QueryString(chaine).Count > 1 Then

For index = 1 To Request.QueryString(chaine).Count

Response.Write "<tr><td><u>" & chaine & "(" & index _
& ") </u></td><td><b>" _
& Request.QueryString(chaine)(index) _
& "</b></td></tr>"

Next

Else

Response.Write "<tr><td><u>" & chaine _
& "</u></td><td><b>" _
& Request.QueryString(chaine) _
& "</b></td></tr>"

End If

Next
%>
</table>
</body>
</html>
Here's where I am at now. I am testing this page.. and please tell me where
I am going wrong.
your are wrong in the use of Querry.String
If you view this page the var ifp gets written out on screen ( so its not
empty ) but it does not work in the Request.Query and I don't know why.
this is really puzzling me. I have being at this all day. I know its a
string as Its being displayed on screen. and Request.QueryString works when
I pass the value from another page. why does it not accept the value that I
have declared?

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
that smells asp language no ?
<html>
<head>
<title>Test Page</title>
<script language="JavaScript">
no :
<script type="text/javascript">
var
ifp="http://www.webcandesign.com/Without_fl/html/Premium_Templates_test.asp?ifp=http://office.microsoft.com/en-us/default.aspx";
if (typeof(ifp) == "undefined"){
document.write ("Type of x is undefined");}
else{
document.write (ifp);}
if you give (by code, script) a value to ifp or foo
and then, if you ask to write ifp or foo
ifp or foo will be written ... of course !

what matter is that about Querry.String ?

English is not my maternal language but in most of computer languages
if you speak a little english you understand what they talk.

Querry = search, catch
String = termes, words, equality ... a group of caracteres

Where does Query.String works ?
on the url of the document where the querry does its job.
What is its job : to extract informations joined to the url
</script>
</head>
</html>
<body>
<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser. </iframe>
</body>
</html>
Ps. I hope I did not come off being rude before by using Capitals letters, I
sometimes use it to point out things so that it does not get overlooked. I
will try to keep away from using that method :)
sawn nothing in this maner

exceptionaly I leave the copy of precedent post
that you can refere to it

"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42***********************@news.wanadoo.fr...
Paul wrote:
Hi! and thanks for responding. basically I have a menu with sub-menu
options which are htm file to go into an iframe.


sub-menu by options from a select ?
because if it is by JS, basicaly,
the main menu must send a page with sub-menus linked in it

I need it to be so I can do this from any page in my site. this is why I
need a script to pass the value.

In my menu I use the following code to send the sub-menu options.

Sub-menu option 1: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file1_for_iframes.htm


and ? where is the problem ? it is basic html ...

<form action="MainIframepage.asp" target="Iframe001" method="get">
<select name="ifp">
<option selected="selected"
value="Template_Code_Files/default_menu.htm">Main Menu</option>
<option
value="Template_Code_Files/file1_for_iframe.htm">sub-menu 1</option>
<option
value="Template_Code_Files/file2_for_iframe.htm">sub-menu 2</option>
</select>
<input type="submit" value="GO">
</form>
Now for the MainIframepage.asp file I created the following Iframe like
this---and it works fine.

<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser.


Sorry I am not to your orders !
If you want I pay a visit to your site
please give me a page I can read !
That't to say insert betwen tags of iframe a link to the plan of site with
links in basic html sending in self window.
Your way of doing is a real expression of incorrection and unpoliteness

</iframe>
Now the problem is for me is what happens if someone enters the page
without clicking an sub-option. ( Like for instance, coming from a
bookmark OR if the session times out.) he will get an empty Iframe.


Do not understand :
- the link is on the page (even in an option of select)
- the mechanism of send is in the browser
If there is a question of time spent on site it is the job of your asp :
time out or time unexisting ? hop ! go to page default
and ... I know anything about asp.

your [Request.QueryString("ifp")] has to enquiry if 'ifp' exists
if not : hop -> default page
if it is : hop ! what is write in url (remenber : target="Iframe001")

as I know anything in asp
I would have given the default page to the src of iframe
<iframe src="default.htm" name="Iframe001" width="750px" blah>
Activing menu will send a page to the iframe with variable ifp to obey

The querry about ifp and its different answeres would have to be in your
"MainIframepage.asp"

Is there not a ng for asp ?

--
Stephane Moriaux et son [moins] vieux Mac


--
Stephane Moriaux et son [moins] vieux Mac
Jul 24 '05 #11
ASM
Paul wrote:
Sorry about the above.. I made a small copy error.


no importance : answer is same as precedente

Learn use of Querry.String
--
Stephane Moriaux et son [moins] vieux Mac
Jul 24 '05 #12
HI! Thanks allot for all your info. I will look into the Request.QueryString
for closely. its a little hard for me now, I new to it. but I will read on.

Once again, Thanks you :)

Paul
"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42**********************@news.wanadoo.fr...
Paul wrote:
Hi! Thanks for responding.

I wanted to use JS for ASP. I am a beginner in JS and ASP. I can here
because I needed to know JS.


You can read posts to learn some JS
but, on my idea, you don't need it in this case.

what do you expect the Request.QueryString("ifp")
would do in src of iframe ? ==> nothing !

What asp documentation teach to you on this ?
<http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iissdk/html/3c778166-4a3c-4eda-b7cd-bb8557fe2de0.asp>
<http://authors.aspalliance.com/aspxtreme/sys/web/httprequestclassquerystring.aspx>
<http://docs.sun.com/source/817-2514-10/Ch9_ASPBuiltIn44.html>
<http://docs.sun.com/source/817-2514-10/Ch9_ASPBuiltIn45.html>
<http://www.serverwatch.com/tutorials/article.php/2174391>
did you try what I did give ?
(the menu in select of form with the associate iframe ?)

Last explanations :
In your home page the iframe has in its src a default page
Then you choice a menu (or not) and press button [GO]
the form calls your page.asp
completed automaticly with ?ifp=page_of_menu.htm
and page.asp will be send (after calculs on server) to the iframe

the Query.String must be in your page.asp

this page.asp could look like :

<html>
<body>
<table>
<tr>
<th>Elément</th>
<th>Valeur</th>
</tr>
<%
For Each chaine In Request.QueryString

If Request.QueryString(chaine).Count > 1 Then

For index = 1 To Request.QueryString(chaine).Count

Response.Write "<tr><td><u>" & chaine & "(" & index _
& ") </u></td><td><b>" _
& Request.QueryString(chaine)(index) _
& "</b></td></tr>"

Next

Else

Response.Write "<tr><td><u>" & chaine _
& "</u></td><td><b>" _
& Request.QueryString(chaine) _
& "</b></td></tr>"

End If

Next
%>
</table>
</body>
</html>
Here's where I am at now. I am testing this page.. and please tell me
where I am going wrong.


your are wrong in the use of Querry.String
If you view this page the var ifp gets written out on screen ( so its not
empty ) but it does not work in the Request.Query and I don't know why.
this is really puzzling me. I have being at this all day. I know its a
string as Its being displayed on screen. and Request.QueryString works
when I pass the value from another page. why does it not accept the value
that I have declared?

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>


that smells asp language no ?
<html>
<head>
<title>Test Page</title>
<script language="JavaScript">


no :
<script type="text/javascript">
var
ifp="http://www.webcandesign.com/Without_fl/html/Premium_Templates_test.asp?ifp=http://office.microsoft.com/en-us/default.aspx";
if (typeof(ifp) == "undefined"){
document.write ("Type of x is undefined");}
else{
document.write (ifp);}


if you give (by code, script) a value to ifp or foo
and then, if you ask to write ifp or foo
ifp or foo will be written ... of course !

what matter is that about Querry.String ?

English is not my maternal language but in most of computer languages
if you speak a little english you understand what they talk.

Querry = search, catch
String = termes, words, equality ... a group of caracteres

Where does Query.String works ?
on the url of the document where the querry does its job.
What is its job : to extract informations joined to the url
</script>
</head>
</html>
<body>
<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser. </iframe>
</body>
</html>
Ps. I hope I did not come off being rude before by using Capitals
letters, I sometimes use it to point out things so that it does not get
overlooked. I will try to keep away from using that method :)


sawn nothing in this maner

exceptionaly I leave the copy of precedent post
that you can refere to it

"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42***********************@news.wanadoo.fr...
Paul wrote:

Hi! and thanks for responding. basically I have a menu with sub-menu
options which are htm file to go into an iframe.

sub-menu by options from a select ?
because if it is by JS, basicaly,
the main menu must send a page with sub-menus linked in it
I need it to be so I can do this from any page in my site. this is why I
need a script to pass the value.

In my menu I use the following code to send the sub-menu options.

Sub-menu option 1: ( code below )
MainIframepage.asp?ifp=Template_Code_Files/file1_for_iframes.htm

and ? where is the problem ? it is basic html ...

<form action="MainIframepage.asp" target="Iframe001" method="get">
<select name="ifp">
<option selected="selected"
value="Template_Code_Files/default_menu.htm">Main Menu</option>
<option
value="Template_Code_Files/file1_for_iframe.htm">sub-menu 1</option>
<option
value="Template_Code_Files/file2_for_iframe.htm">sub-menu 2</option>
</select>
<input type="submit" value="GO">
</form>

Now for the MainIframepage.asp file I created the following Iframe like
this---and it works fine.

<iframe src="<%=Request.QueryString("ifp")%>" name="Iframe001"
width="750px" height="920px" scrolling="yes" id="Iframe001">If you are
reading this then your browser cannot view Iframe, Please upgrade you
browser.

Sorry I am not to your orders !
If you want I pay a visit to your site
please give me a page I can read !
That't to say insert betwen tags of iframe a link to the plan of site
with links in basic html sending in self window.
Your way of doing is a real expression of incorrection and unpoliteness

</iframe>

Now the problem is for me is what happens if someone enters the page
without clicking an sub-option. ( Like for instance, coming from a
bookmark OR if the session times out.) he will get an empty Iframe.

Do not understand :
- the link is on the page (even in an option of select)
- the mechanism of send is in the browser
If there is a question of time spent on site it is the job of your asp :
time out or time unexisting ? hop ! go to page default
and ... I know anything about asp.

your [Request.QueryString("ifp")] has to enquiry if 'ifp' exists
if not : hop -> default page
if it is : hop ! what is write in url (remenber : target="Iframe001")

as I know anything in asp
I would have given the default page to the src of iframe
<iframe src="default.htm" name="Iframe001" width="750px" blah>
Activing menu will send a page to the iframe with variable ifp to obey

The querry about ifp and its different answeres would have to be in your
"MainIframepage.asp"

Is there not a ng for asp ?

--
Stephane Moriaux et son [moins] vieux Mac


--
Stephane Moriaux et son [moins] vieux Mac

Jul 24 '05 #13
"Paul" <pa***********@sympatico.ca> wrote in message
news:eh*************@TK2MSFTNGP15.phx.gbl...
HI! thanks, I saw that little one after I posted it. but there is still a
problem. and the other post answered that one.

Do you know of another way to do it. ( other than converting the string and
then back again )?

Thanks in advance :)

Paul

I'm not sure, if you want to test for null or empty string the have:
if (!ifp)
{
//ifp is null or empty
}
--

Joe (MVP)

https://mvp.support.microsoft.com/pr...8-8741D22D17A5
Jul 24 '05 #14
Paul wrote:
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly. so I need a way doing this. so I check to see if the ifp value is
null and if so then assign it a value. is this correct?


comp.lang.javascript
Aug 9 '05 #15
Hmm!

There have been a few posts on this topic (or related), including some I
have taken part in

One spelt out the different between:
a null string, tested by 'if (string == null)'
an empty string, tested by 'if (string == "")'
and
a string comprising a space, tested by 'if (string == " ")'

Your test is for an empty string. Is this what it should be?

You are testing if (ifp == ..). I have not used iframes, so I don't know
whether this is the correct thing to be testing. Others may answer this.

With frames, I use this code
if (parent.location.href == window.location.href)
parent.location.href = "index.html"

I would need to experiment to see what works with iframes. (Maybe I should,
to add to my knowledge !)
--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au

akarl wrote:
Paul wrote:
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>

Basicly I want my iframe to have a default page if the user enters in
directly. so I need a way doing this. so I check to see if the ifp
value is null and if so then assign it a value. is this correct?


comp.lang.javascript

Aug 9 '05 #16
akarl wrote:
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>


You misspelled "if" (Javascript is case-sensitive).
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Aug 9 '05 #17
Try:

<SCRIPT language="JavaScript">
if (ifp=="")
{
ifp="default.htm";
}
</SCRIPT>

"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:11*************@corp.supernews.com...
akarl wrote:
HI! I get an error with this code.

<SCRIPT language="JavaScript">
If (ifp==""){
ifp="default.htm"}
//--></SCRIPT>


You misspelled "if" (Javascript is case-sensitive).
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message.
Use
of this email address implies consent to these terms. Please do not
contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Aug 31 '05 #18

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

220
18803
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
5
2337
by: Marian | last post by:
Hi, I am totaly novice in .NET and I am studying a book about this. There was mentioned "assembly". I did not understand, how function does it has . I would like to know the exact run of code...
125
14538
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
44
4122
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there...
12
3272
by: Steven T. Hatton | last post by:
This is something I've been looking at because it is central to a currently broken part of the KDevelop new application wizard. I'm not complaining about it being broken, It's a CVS images. ...
6
3287
by: Paul | last post by:
HI! I get an error with this code. <SCRIPT language="JavaScript"> If (ifp==""){ ifp="default.htm"} //--></SCRIPT> Basicly I want my iframe to have a default page if the user enters in...
121
9903
by: typingcat | last post by:
First of all, I'm an Asian and I need to input Japanese, Korean and so on. I've tried many PHP IDEs today, but almost non of them supported Unicode (UTF-8) file. I've found that the only Unicode...
669
25390
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Languageâ€, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic...
9
3164
by: Gummy | last post by:
Hello, I created a user control that has a ListBox and a RadioButtonList (and other stuff). The idea is that I put the user control on the ASPX page multiple times and each user control will...
0
7188
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7063
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7313
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6970
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7441
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5558
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3146
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
720
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
366
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.