473,399 Members | 2,159 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

ASP variable in HTML frame target?

This is simpler than I am making it... all I want to do is build a url
for an html frame source from a string constant and a variable.

I want to

Response.Write "<Frame source=""bla.bla.asp?query=& aspVariable"" ...
etc>"

I can get it to open the bla.bla.com in the frame but the number and
sequence of quotes seem to be messing up the tail end of it

it is annoying becasue it is simple and I am close to it just seem to
be kicking it away when I almost get it to work...

ty

Aug 25 '06 #1
3 2146
"2hawks" <2H****@gmail.comwrote in news:1156545833.343686.131940
@m79g2000cwm.googlegroups.com:
This is simpler than I am making it... all I want to do is build a url
for an html frame source from a string constant and a variable.

I want to

Response.Write "<Frame source=""bla.bla.asp?query=& aspVariable"" ...
etc>"

I can get it to open the bla.bla.com in the frame but the number and
sequence of quotes seem to be messing up the tail end of it

it is annoying becasue it is simple and I am close to it just seem to
be kicking it away when I almost get it to work...

ty
Response.Write
"<frame src=""bla.bla.asp?query=" & aspVariable & """ etc=""0"">"
Aug 25 '06 #2
Peter wrote on 26 aug 2006 in microsoft.public.inetserver.asp.general:
"2hawks" <2H****@gmail.comwrote in news:1156545833.343686.131940
@m79g2000cwm.googlegroups.com:
>This is simpler than I am making it... all I want to do is build a url
for an html frame source from a string constant and a variable.

I want to

Response.Write "<Frame source=""bla.bla.asp?query=& aspVariable"" ...
etc>"
I can get it to open the bla.bla.com in the frame
You could not, because _source_ is incorrect.
>but the number and
sequence of quotes seem to be messing up the tail end of it

it is annoying becasue it is simple and I am close to it just seem to
be kicking it away when I almost get it to work...

Response.Write
"<frame src=""bla.bla.asp?query=" & aspVariable & """ etc=""0"">"
1
I would use single quotes for the HTML:

Response.Write "<frame src='bla.bla.asp?query=" &_
aspVariable & "' etc='0'>"

2
same render effect, even better readable to my aging mind, has:

%>
<frame src='bla.bla.asp?query=<% = aspVariable %>' etc='x'>
<%

3
OT: I would prefer not to use frames at all.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Aug 26 '06 #3
Yes frames are ridiculous...but I must work with what is there...
anyhow, thanks for the good advice. Cheers.

response.write "<FRAME SRC=""YADAYAD.COM?QUERY=" & aspVariable & "
Evertjan. wrote:
Peter wrote on 26 aug 2006 in microsoft.public.inetserver.asp.general:
"2hawks" <2H****@gmail.comwrote in news:1156545833.343686.131940
@m79g2000cwm.googlegroups.com:
This is simpler than I am making it... all I want to do is build a url
for an html frame source from a string constant and a variable.

I want to

Response.Write "<Frame source=""bla.bla.asp?query=& aspVariable"" ...
etc>"
I can get it to open the bla.bla.com in the frame

You could not, because _source_ is incorrect.
but the number and
sequence of quotes seem to be messing up the tail end of it

it is annoying becasue it is simple and I am close to it just seem to
be kicking it away when I almost get it to work...
Response.Write
"<frame src=""bla.bla.asp?query=" & aspVariable & """ etc=""0"">"

1
I would use single quotes for the HTML:

Response.Write "<frame src='bla.bla.asp?query=" &_
aspVariable & "' etc='0'>"

2
same render effect, even better readable to my aging mind, has:

%>
<frame src='bla.bla.asp?query=<% = aspVariable %>' etc='x'>
<%

3
OT: I would prefer not to use frames at all.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Aug 27 '06 #4

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

Similar topics

5
by: Peter | last post by:
L.S. I am developing a PHP-login script (on Lycos Tripod) that uses Session to pass on variables. Below is the entire (stripped) structure that I use. It opens a page where you can Set and Read...
8
by: Hans | last post by:
Hi There, I have a page that has links with some variables and I need to open the results set in a frameset. I have tried doing this in various different ways, but still cannot get the variable...
6
by: BigDadyWeaver | last post by:
I am using the following code in asp to define a unique and unpredictable record ID in Access. <% 'GENERATE UNIQUE ID Function genguid() Dim Guid guid =...
3
by: Al Wilkerson | last post by:
Hey, I have a Web Form with a drop down list, textbox, and search button. When click the search button an SQL server database is queried fordata. Once I have the data in a dataset I use the...
1
by: Al Wilkerson | last post by:
Hey, I have a Web Form with a drop down list, textbox, and search button. When click the search button an SQL server database is queried fordata. Once I have the data in a dataset I use the...
11
by: Rob | last post by:
I know, I know, don't use frames. Well, I'm stuck with these frames and I'm trying to add functionality without a complete redsign. You can look at this as a nostalgic journey. Anyway, I've got...
2
by: Geoff Cox | last post by:
Hello, The code below is aimed at passing the date in the yyyyMMdd format from the javascript calendar in an html file to the php in a another file which then searches a MySQL database. For...
13
by: sindhu | last post by:
Hello acoder. I want to know another type of passing values between pages I have three frames frame1 for main horizontal menu frame 2 for vertical submenu frame 3 which is is loaded based on...
4
Dököll
by: Dököll | last post by:
Hey Gang! I thought I had a good idea but then I realized JSF doesn't play that... I am trying to mimick what HTML can do in JSF when using target tags to related to inner HTML pages. In...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.