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

how to open page in new window using html

hi

i am creating one site and i am not allowed to use client side
scripting in site and i have one link in my one page. when user clicks
on this link the target page must be opened in another window. is it
possible to do it without using javascript,vbscript???

thxs for your help in advance.

Jul 17 '05 #1
8 5665
vishal wrote:
hi

i am creating one site and i am not allowed to use client side
scripting in site and i have one link in my one page. when user clicks
on this link the target page must be opened in another window. is it
possible to do it without using javascript,vbscript???

thxs for your help in advance.


<a href="page.html" target="_blank">page</a>

JP

--
Sorry, <de*****@cauce.org> is a spam trap.
Real e-mail address unavailable. 5000+ spams per month.
Jul 17 '05 #2
thxs

Jul 17 '05 #3
On 28 Mar 2005 00:19:39 -0800, "vishal" <vi************@yahoo.co.in>
reverently intoned upon the aether:
hi

i am creating one site and i am not allowed to use client side
scripting in site and i have one link in my one page. when user clicks
on this link the target page must be opened in another window. is it
possible to do it without using javascript,vbscript???

thxs for your help in advance.

<a href="clarity.php" target="new">Clarity</a>

Different target, same concept.

enjoy,

Sean
"In the End, we will remember not the words of our enemies,
but the silence of our friends."

- Martin Luther King Jr. (1929-1968)

Photo Archive @ http://www.tearnet.com/Sean
Last Updated 29 Sept. 2004
Jul 17 '05 #4
vishal wrote:
i am creating one site and i am not allowed to use client side
scripting in site
Who's stopping you?
and i have one link in my one page. when user clicks on this
link the target page must be opened in another window. is it
possible to do it without using javascript,vbscript???


No, and it's not possible with those languages either. What happens
with your page once the reader has downloaded it is pretty much his
business.

Jul 17 '05 #5
One quick glance of an experienced eye allowed to understand the blurred
and almost unreadable John Dunlop's handwriting:
vishal wrote:
i am creating one site and i am not allowed to use client side
scripting in site


Who's stopping you?


I suppose there might be some compatibility issues for example. I had
such a project once.
and i have one link in my one page. when user clicks on this
link the target page must be opened in another window. is it
possible to do it without using javascript,vbscript???


No, and it's not possible with those languages either. What happens
with your page once the reader has downloaded it is pretty much his
business.


?? Am I missing something here, or have you just ignored the
window.open() function of JavaScript?

Besides, pure HTML should be enough:
<A href='http://some.page' target='_new'>Link TExt</A> will open the
http://some.page in a new window when the user click this link.

Cheers
Mike
Jul 17 '05 #6
Michal Wozniak wrote:

[about opening new windows]
?? Am I missing something here, or have you just ignored the
window.open() function of JavaScript?
Unless you're on an intranet where you can control these things,
there's no knowing that javascipt's available or that window.open does
anything if javascript is available -- even on windowing systems.

http://www.infimum.dk/HTML/JSwindows.html#ref_3_5
Besides, pure HTML should be enough:
<A href='http://some.page' target='_new'>Link TExt</A>
'_new' violates the spec, as only four target names begin with
underscores: namely, '_blank', '_self', '_parent', and '_top'. The
horse's mouth:

http://www.w3.org/TR/html401/types.h...e-frame-target
will open the http://some.page in a new window when the user click
this link.


Sorry, but I can't agree with your 'will', because sometimes it won't;
nor can I agree with the spec, which neatly hedges the issue by saying
'should'. How I interact with a page is nobody's business but mine.

Jul 17 '05 #7
One quick glance of an experienced eye allowed to understand the blurred
and almost unreadable John Dunlop's handwriting:
Michal Wozniak wrote:

[about opening new windows]
?? Am I missing something here, or have you just ignored the
window.open() function of JavaScript?


Unless you're on an intranet where you can control these things,
there's no knowing that javascipt's available or that window.open does
anything if javascript is available -- even on windowing systems.

http://www.infimum.dk/HTML/JSwindows.html#ref_3_5
Besides, pure HTML should be enough:
<A href='http://some.page' target='_new'>Link TExt</A>


'_new' violates the spec, as only four target names begin with
underscores: namely, '_blank', '_self', '_parent', and '_top'. The
horse's mouth:

http://www.w3.org/TR/html401/types.h...e-frame-target


Right, my mistake.
will open the http://some.page in a new window when the user click
this link.


Sorry, but I can't agree with your 'will', because sometimes it won't;
nor can I agree with the spec, which neatly hedges the issue by saying
'should'. How I interact with a page is nobody's business but mine.


Well, I agree, but I don't think the original poster wants to write a
page that will work on Lynx, TV-Viewers and so on. Of course, JavaScript
works only when it is enabled, but you have written "that it [namely:
opening new windows] is not possible in those languages". It is POSSIBLE
but there is no way of knowing if it is available/enabled on the user's
side. And that's all I wanted to say with "window.open" here.

Now, to the opening of new windows: come on, you could say that it is
solely your (user's) business how they want the page to be coloured, but
the developers have to write pages that do the job - on most of the
user's setups. You can tell your browser to display both black and white
as green, but you have to know that this will render some pages
unviewable for you.
Same thing with windows - you have the right to disable whatever the
settings you like, but that narrows the amount of pages you could view
without problems.
I do not like pop-ups. I do not use them. But the original poster was
asking HOW to do it. And you answered it is not possible - which is
obviously not true.
And I would like to remind you that 99% of pop-ups are written in
JavaScript. And the OP wanted to do this without it - which suggests he
had no *evil* things in mind. :) I have nothing against opening a new
window upon CLICKING a link, it can even help sometimes, besides you can
always use tabs. A new window or tab opened this way is NOT a pop-up.

Man, getting OT here. :)

Cheers
Mike
Jul 17 '05 #8
Michal Wozniak wrote:
Of course, JavaScript works only when it is enabled, but you
have written "that it [namely: opening new windows] is not
possible in those languages".
Maybe I wasn't clear. When I said it wasn't possible, I wasn't
referring to the opening of new windows generally, but specifically the
_forced_ opening of new windows. vishal said the page _must_ be opened
in a new window, from which I inferred that he, or more likely those
whose rules he is working under, wouldn't be happy if somebody followed
the link in the same window.
It is POSSIBLE


No disagreement there from me.

Jul 17 '05 #9

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

Similar topics

1
by: Wes | last post by:
This should be really simple ... but how to do it has been eluding me ... I am writing an ASP.NET application and am using ASP.ImageButtons & ASP.Buttons. Instead of redirecting to another...
1
by: Matt | last post by:
My problem is when the user click the submit button, it will launch another new window for the request page. I want to confirm we cannot use JavaScript open window functions to open a request page?...
18
by: Paul | last post by:
I link to a web site from an Excel spreadsheet. The page i link to is getCookie.asp which sets a cookie then returns back some html which opens a new window, to the same site but a different page...
6
by: lukeo | last post by:
I'm shelling out to an .asp (or htm) page from an application. I want to show this in a window without the address bar, etc... Is there a way I can redirect this page using javascript to a page...
2
by: Raptor | last post by:
I'm a complete Javascript n00b, using a snippet I found on the web. I'll probably be buying a Javascript book. What's the authoritative on-line resource for Javascript, like php.net is for PHP? ...
10
by: Marshall Dudley | last post by:
When I do the following line in Netscape, the popup loads as it should, but the parent window usually, but not always, reloads as well. <a href="#"...
7
by: anthony.turcotte | last post by:
Hi, I've looked for a solution to this problem on google, read posts in this newsgroup and I still haven't found anything that could help me. Here's the scenario. 1. User accesses...
13
by: Bob Jones | last post by:
Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains...
6
by: bushi | last post by:
hi everyone! i have diplayed my hyperlinks in a iframe.when i redirect to next page.the next page also open in the same frame,but i want to open a new browser window,when i click on the...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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
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...

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.