473,394 Members | 1,828 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,394 software developers and data experts.

popup window using ASP and VBscript

Hi everyone

I am having a little problem with an asp page.
I am trying to create a master/detail page, but on this occasion, it's only
a small amount of detail, so i want to create a small page, for the detail,
and have that pop up. something you would do for instance to show a link to
a larger graphic on your detail page.
It's obvious that i am doing something wrong, because instead of opening the
new page, in the pop up, the main page moves to the detail, and the pop up
window then opens up as an error.
For example here
http://www.tripak.me.uk/sublisting.a...9&TexSpecID=34
Clicking on a link there will give me the detail page, but not where i want
it.

This is my code from the master page, and the error is probably here
<a href="info.asp?GradeID=<%=(rsSublisting("GradeID") )%>"
onClick="window.open('nameofwindow','','width=100, height=100');return
false"><%=rsSubListing("Grades")%></a>

Could someone point out what i have done wrong?

Thanks so much

Raphael
Jul 19 '05 #1
11 50505
Try

<A href="#"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting("Grade
ID")%>',width=100,height=100)"><%=rsSubListing("Gr ades")%></A>

Ray at work

"Raphael Gluck" <iwish i could tell you @alas blame the spammers> wrote in
message news:u0**************@TK2MSFTNGP10.phx.gbl...
Hi everyone

I am having a little problem with an asp page.
I am trying to create a master/detail page, but on this occasion, it's only a small amount of detail, so i want to create a small page, for the detail, and have that pop up. something you would do for instance to show a link to a larger graphic on your detail page.
It's obvious that i am doing something wrong, because instead of opening the new page, in the pop up, the main page moves to the detail, and the pop up
window then opens up as an error.
For example here
http://www.tripak.me.uk/sublisting.a...9&TexSpecID=34
Clicking on a link there will give me the detail page, but not where i want it.

This is my code from the master page, and the error is probably here
<a href="info.asp?GradeID=<%=(rsSublisting("GradeID") )%>"
onClick="window.open('nameofwindow','','width=100, height=100');return
false"><%=rsSubListing("Grades")%></a>

Could someone point out what i have done wrong?

Thanks so much

Raphael

Jul 19 '05 #2
Thanks
I tried that, but it doesnt seem to work, I entered all this

<A href="#"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting("Grade
ID")%>',width=100,height=100)"><%=rsSubListing("Gr ades")%></A>

And it just doesnt move. I can see an error triangle in the bottom of the
web page, line 188 which doesnt contain anything to help me
Have i misunderstood your script line? must i modify it?

Please help

Raphael
Jul 19 '05 #3
sorry if this a double post, but it doesnt look like it sent

Thanks Ray
my pages are in ASP and VBscript
would that be possible cause or is that a silly question?

Raphael
Jul 19 '05 #4
The problem you're having has to do with javascript, not ASP. Try loading
your page and doing a view-source and debugging the client-side code after
checking what error the browser is reporting.

Ray at work

"Raphael Gluck" <iwish i could tell you @alas blame the spammers> wrote in
message news:eM*************@TK2MSFTNGP09.phx.gbl...
sorry if this a double post, but it doesnt look like it sent

Thanks Ray
my pages are in ASP and VBscript
would that be possible cause or is that a silly question?

Raphael

Jul 19 '05 #5
Thanks Ray, But still not

Can i ask you again are you sure this code is the correct one?

<A href="#"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting("Grade
ID")%>',width=100,height=100)"><%=rsSubListing("Gr ades")%></A>
The error doesnt seem to be confined to one line, though the page displays.
Maybe i need to tell you more.
The page i am on is sublisting.asp
The page i am trying to get to pop up is called info.asp
When i roll over the mouse over the link, sublisting.asp?Item_ID etc...
I know you're way better at this than me, but arent i supposed to see
info.asp? etc...

Do i need to insert something into the ahref tag? instead of "#"

Please help

Raphael
Jul 19 '05 #6
Gazing into my crystal ball I observed "Raphael Gluck" <iwish i could
tell you @alas blame the spammers> writing in
news:eZ**************@TK2MSFTNGP10.phx.gbl:
Thanks Ray, But still not

Can i ask you again are you sure this code is the correct one?

<A href="#"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting("G
rade ID")%>',width=100,height=100)"><%=rsSubListing("Gr ades")%></A>
The error doesnt seem to be confined to one line, though the page
displays. Maybe i need to tell you more.
The page i am on is sublisting.asp
The page i am trying to get to pop up is called info.asp
When i roll over the mouse over the link, sublisting.asp?Item_ID etc...
I know you're way better at this than me, but arent i supposed to see
info.asp? etc...

Do i need to insert something into the ahref tag? instead of "#"

Please help

Raphael


That's the problem with using javascript for links. You haven't provided a
method for non-javascript users. <a href="#"> will only take the user to
the top of the page.

What you need to do is:
<A href="info.asp?GradeID=<%=rsSublisting("Grade ID")%>"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting
("Grade ID")%>',width=100,height=100); return false" title="Open <%
=rsSublisting("Grade ID")%> in a new window" target="_blank"><%
=rsSubListing("Grades")%></A>

The above does three things:
1. The return false allows users without javascript to open the page.
2. The title attribute indicates that the page will open in a new window.
For accessibility reasons, users should know that pages are going to open
in new windows.
3. The target attribute opens in a new window for non-javascript users.

Note: users with pop-up stoppers may still have problems with
target="_blank", therefore, it might be better to omit it and suggest the
user open in a new window.

--
Adrienne Boswell
Please respond to the group so others can share
http://www.arbpen.com
Jul 19 '05 #7
Thank you Adrienne

I tried your script yesterday, but it gave me errors as you can see,
I have just tried again, and now it's not giving me errors, but still not
achieving its purpose

It's opening the new page, but as a full sized browser window.
It's because i am VB illiterate, I guess that's bad.
I hope you can help me if you have a minute

Thanks so much

Raphael
Jul 19 '05 #8
"Adrienne" wrote:

What you need to do is:
<A href="info.asp?GradeID=<%=rsSublisting("Grade ID")%>"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting
("Grade ID")%>',width=100,height=100); return false" title="Open <%
=rsSublisting("Grade ID")%> in a new window" target="_blank"><%
=rsSubListing("Grades")%></A>
Everybody keeps mixing up the order of the parameters in window.open():
http://msdn.microsoft.com/workshop/a...ods/open_0.asp

Here's a better idea -- instead of "_blank", use TARGET="nameofwindow" and
omit the [return false]. And use a more descriptive window name, for crying
out loud. Your link should look something like this:

<A HREF="info.asp?GradeID=<%=rsSublisting.Fields("Gra de ID").Value%>"
ONCLICK="window.open('','gradeDetails','height=100 ,width=100')"
TITLE="Open <%=rsSublisting.Fields("Grade ID").Value%> in a new
window"
TARGET="gradeDetails"


If scripting is defective or absent, this will open in a default-sized
window named "gradeDetails". If scripting is functional, the properly sized
(and named) window will be created with the click event, and will
immediately be used as the target of the anchor.
Tested successfully in the following browsers:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.4) Gecko/20030624
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2) Opera 7.11 [en]
--
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.
Jul 19 '05 #9
thank you very much, i will try this option too.
I appreciate it

Raphael
"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:eq**************@TK2MSFTNGP12.phx.gbl...
"Adrienne" wrote:

What you need to do is:
<A href="info.asp?GradeID=<%=rsSublisting("Grade ID")%>"
onclick="window.open('nameofwindow','info.asp?Grad eID=<%=rsSublisting
("Grade ID")%>',width=100,height=100); return false" title="Open <%
=rsSublisting("Grade ID")%> in a new window" target="_blank"><%
=rsSubListing("Grades")%></A>
Everybody keeps mixing up the order of the parameters in window.open():

http://msdn.microsoft.com/workshop/a...ods/open_0.asp
Here's a better idea -- instead of "_blank", use TARGET="nameofwindow" and
omit the [return false]. And use a more descriptive window name, for crying out loud. Your link should look something like this:

<A HREF="info.asp?GradeID=<%=rsSublisting.Fields("Gra de ID").Value%>"
ONCLICK="window.open('','gradeDetails','height=100 ,width=100')"
TITLE="Open <%=rsSublisting.Fields("Grade ID").Value%> in a new
window"
TARGET="gradeDetails"
>
If scripting is defective or absent, this will open in a default-sized
window named "gradeDetails". If scripting is functional, the properly

sized (and named) window will be created with the click event, and will
immediately be used as the target of the anchor.
Tested successfully in the following browsers:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.4) Gecko/20030624
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2) Opera 7.11 [en]
--
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.

Jul 19 '05 #10
Thank you Adrienne

Is it possible to help me with one more thing, can you show me where to
place the screen. how can i specify the x and y coordinates.

Thank you very much
Jul 19 '05 #11
well actually i did post to scripting.vbscript 24 hours ago, with not a
single reply

Raphael
Jul 19 '05 #12

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

Similar topics

7
by: E Michael Brandt | last post by:
I have been lurking here for some time, and now would like to ask a question of you clever coders: My JustSo PictureWindow 3 Extension for Dreamweaver has stumbled in the face of the new Opera...
4
by: GrantS | last post by:
I am having a problem closing a popup window opened modally. When I try to close the window (when the user hits save button and the data has been processed), the Popup window opens as a full screen...
0
by: ChrisB | last post by:
I'm attempting to open a new window from a LinkButton in a DataGrid. I can set a session variable in the ItemCommand event for the LinkButton like so: // this is used to handle the ItemCommand...
1
by: Ken | last post by:
Is there a way to show a popup window using code behind in VB? Partial java script code: Open('htmpage.html')
7
by: Drew Berkemeyer | last post by:
Hello, We have an application that we have written using ASP.NET. On one of our pages we open a popup window using javascript. The popup window has a save and a cancel button. Both of them are...
5
by: Angel | last post by:
I created a popup window using createPopup method. Is there anyway to keep the popup open until the user clicks a button within the popup to close the popup window. Right now the popup window will...
1
by: sundarachaitanyam | last post by:
hi, I am just wondering how to create a modal popup using javascript. The popup window shouldnt contain minimize,close and maximize buttons and it should be resizable? I am trying using...
4
by: jyo123 | last post by:
Hi, Is there any way to write perl script to save the popup window into specified location.Please anyone help on this. Thanks is advance.
3
by: pavanip | last post by:
Hi, I have written the code for display popup window using javascript in button onclient click event. <asp:Button ID="Button1" runat="server" Style="position: static"...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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
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...

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.