473,326 Members | 2,148 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,326 software developers and data experts.

I need to make IE buttons and menu's disappear.

Ok,
On my website, tribidz.com, there is one page that needs to not have any
buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

..Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #1
13 1584
You need to open a totally new window you can use client side javascript
such as this:
window.open('MyPage.aspx','_blank','toolbar=no')
There are all kinds of options for setting window properties such as window
size and toolbar visibility.
Here's more info:
http://msdn.microsoft.com/workshop/a...ods/open_0.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Ok,
On my website, tribidz.com, there is one page that needs to not have any
buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 18 '05 #2
Trint,

If you're interested I've created a javascript object you may download from
my site which has many useful javascripts specifically designed for use in
..NET. One of them does exactly what you need to do: It let's you specify a
new window to open and gives easy access to setting all of the available
properties like whether or not to show the toolbar, etc.

All of the code and objects on my site are free and all projects source code
is downloadable as version 1.1 .NET projects.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Ok,
On my website, tribidz.com, there is one page that needs to not have any
buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

.Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 18 '05 #3
TJS
using IE6, the links on the left side of your web page fail consistently
for me....
"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
Trint,

If you're interested I've created a javascript object you may download from my site which has many useful javascripts specifically designed for use in
.NET. One of them does exactly what you need to do: It let's you specify a
new window to open and gives easy access to setting all of the available
properties like whether or not to show the toolbar, etc.

All of the code and objects on my site are free and all projects source code is downloadable as version 1.1 .NET projects.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Ok,
On my website, tribidz.com, there is one page that needs to not have any
buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

.Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 18 '05 #4
which links?
i've never seen them fail.
Thanks,
Trint

..Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #5
This tip helped me also, except that when I type this code into my page there is a blue line under "Window" and when I hover over it I see, "Name 'Window' is not declared. Is there a namespace I need to import?

Thank you,
Judy

"Steve C. Orr [MVP, MCSD]" wrote:
You need to open a totally new window you can use client side javascript
such as this:
window.open('MyPage.aspx','_blank','toolbar=no')
There are all kinds of options for setting window properties such as window
size and toolbar visibility.
Here's more info:
http://msdn.microsoft.com/workshop/a...ods/open_0.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Ok,
On my website, tribidz.com, there is one page that needs to not have any
buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 18 '05 #6
It's client side javascript.
It needs to go in your html page, inside script tags.
<script language=javascript>
window.open('MyPage.aspx','_blank');
</script>

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Judy Ward" <Ju******@discussions.microsoft.com> wrote in message
news:61**********************************@microsof t.com...
This tip helped me also, except that when I type this code into my page there is a blue line under "Window" and when I hover over it I see, "Name
'Window' is not declared. Is there a namespace I need to import?
Thank you,
Judy

"Steve C. Orr [MVP, MCSD]" wrote:
You need to open a totally new window you can use client side javascript
such as this:
window.open('MyPage.aspx','_blank','toolbar=no')
There are all kinds of options for setting window properties such as window size and toolbar visibility.
Here's more info:
http://msdn.microsoft.com/workshop/a...ods/open_0.asp
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Ok,
On my website, tribidz.com, there is one page that needs to not have any buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 18 '05 #7
Ok,
I got this to work only in a sample html file:
<script language=javascript>
window.open("",null,"fullscreen=no,status=no,toolb ar=no,menubar=no,lo
cation=no");
</script>
But,
You can see for yourself that it does not work in this file:

http://www.tribidz.com/ItemDetail.as...-63bd-4cc2-a41
7-6143742347e9

Any help is appreciated.

.Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #8
TJS,

That's interesting. I am using IE 6 and everything works fine. I've had
other co-workers test this via IE 6 from 5 other computers and all buttons
and links on my site work fine. You must have something in IE's settings
changed. If, because of the recent security issues, you've turned of
scripting that could be it. You'll find that .NET relys heavily on
scripting.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"TJS" <no****@here.com> wrote in message
news:O%****************@tk2msftngp13.phx.gbl...
using IE6, the links on the left side of your web page fail consistently
for me....
"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
Trint,

If you're interested I've created a javascript object you may download

from
my site which has many useful javascripts specifically designed for use in .NET. One of them does exactly what you need to do: It let's you specify a new window to open and gives easy access to setting all of the available
properties like whether or not to show the toolbar, etc.

All of the code and objects on my site are free and all projects source

code
is downloadable as version 1.1 .NET projects.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Ok,
On my website, tribidz.com, there is one page that needs to not have any buttons or menu or address bar. How can I do this? What is the html
code or whatever?
Thanks,
Trint

.Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Nov 18 '05 #9
Well,
Would you please look at the source on this page and tell me what is
wrong?

http://www.tribidz.com/ItemDetail.as...-63bd-4cc2-a41
7-6143742347e9

Thanks,
Trint

.Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #10
Trint,

This error usually occurrs if you are passing an empty object into a method
that is looking for a string.

In other words, you are calling a sub or function and passing it an empty
string. I would step through your page load code in the debugger and you
should be able to identify which string isn't getting filled. The string in
question is eventually being passed into the datetime's parse routine. So
you have a string that you are expecting to be a date which is actually
null.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Trint Smith" <tr********@hotmail.com> wrote in message
news:Oi*************@TK2MSFTNGP10.phx.gbl...
Well,
Would you please look at the source on this page and tell me what is
wrong?

http://www.tribidz.com/ItemDetail.as...-63bd-4cc2-a41
7-6143742347e9

Thanks,
Trint

Net programmer
tr********@hotmail.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 18 '05 #11
TJS
when I click through on pricing , skills or contacts,

the screen is all the blue background, the menu items such as demos,
biography are at the bottom of the screen and this text or some variation
of it is displayed

<img id="imgR1C1" src="images/background/hdr_r1_c1.gif" bor...

I don't have problems at any other website....


"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
TJS,

That's interesting. I am using IE 6 and everything works fine. I've had
other co-workers test this via IE 6 from 5 other computers and all buttons
and links on my site work fine. You must have something in IE's settings
changed. If, because of the recent security issues, you've turned of
scripting that could be it. You'll find that .NET relys heavily on
scripting.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"TJS" <no****@here.com> wrote in message
news:O%****************@tk2msftngp13.phx.gbl...
using IE6, the links on the left side of your web page fail consistently
for me....
"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
Trint,

If you're interested I've created a javascript object you may download from
my site which has many useful javascripts specifically designed for use in .NET. One of them does exactly what you need to do: It let's you
specify
a new window to open and gives easy access to setting all of the
available properties like whether or not to show the toolbar, etc.

All of the code and objects on my site are free and all projects source
code
is downloadable as version 1.1 .NET projects.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Trint Smith" <tr********@hotmail.com> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
> Ok,
> On my website, tribidz.com, there is one page that needs to not have

any > buttons or menu or address bar. How can I do this? What is the

html > code or whatever?
> Thanks,
> Trint
>
> .Net programmer
> tr********@hotmail.com
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



Nov 18 '05 #12
TJS,

Which operating system and browser are you using?

I've seen the blue bar expand to fill the screen on Safari occasionaly, but
a refresh always renders it correctly the second time...

I assume it's a bug in Safari since, when I do a view source on both the
mis-rendered and properly rendered pages the code is identical, yet the
browser sometimes shows it incorrectly.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"TJS" <no****@here.com> wrote in message
news:O%****************@tk2msftngp13.phx.gbl...
when I click through on pricing , skills or contacts,

the screen is all the blue background, the menu items such as demos,
biography are at the bottom of the screen and this text or some variation
of it is displayed

<img id="imgR1C1" src="images/background/hdr_r1_c1.gif" bor...

I don't have problems at any other website....


"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
TJS,

That's interesting. I am using IE 6 and everything works fine. I've had
other co-workers test this via IE 6 from 5 other computers and all buttons
and links on my site work fine. You must have something in IE's settings
changed. If, because of the recent security issues, you've turned of
scripting that could be it. You'll find that .NET relys heavily on
scripting.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"TJS" <no****@here.com> wrote in message
news:O%****************@tk2msftngp13.phx.gbl...
using IE6, the links on the left side of your web page fail consistently for me....
"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message news:10*************@corp.supernews.com...
> Trint,
>
> If you're interested I've created a javascript object you may download from
> my site which has many useful javascripts specifically designed for use
in
> .NET. One of them does exactly what you need to do: It let's you

specify
a
> new window to open and gives easy access to setting all of the

available > properties like whether or not to show the toolbar, etc.
>
> All of the code and objects on my site are free and all projects source code
> is downloadable as version 1.1 .NET projects.
>
> --
> Sincerely,
>
> S. Justin Gengo, MCP
> Web Developer / Programmer
>
> www.aboutfortunate.com
>
> "Out of chaos comes order."
> Nietzsche
> "Trint Smith" <tr********@hotmail.com> wrote in message
> news:eF**************@tk2msftngp13.phx.gbl...
> > Ok,
> > On my website, tribidz.com, there is one page that needs to not
have any
> > buttons or menu or address bar. How can I do this? What is the

html > > code or whatever?
> > Thanks,
> > Trint
> >
> > .Net programmer
> > tr********@hotmail.com
> >
> > *** Sent via Developersdex http://www.developersdex.com ***
> > Don't just participate in USENET...get rewarded for it!
>
>



Nov 18 '05 #13
TJS
IE6 win xp Pro
everything is up to date.
"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
TJS,

Which operating system and browser are you using?

I've seen the blue bar expand to fill the screen on Safari occasionaly, but a refresh always renders it correctly the second time...

I assume it's a bug in Safari since, when I do a view source on both the
mis-rendered and properly rendered pages the code is identical, yet the
browser sometimes shows it incorrectly.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"TJS" <no****@here.com> wrote in message
news:O%****************@tk2msftngp13.phx.gbl...
when I click through on pricing , skills or contacts,

the screen is all the blue background, the menu items such as demos,
biography are at the bottom of the screen and this text or some variation
of it is displayed

<img id="imgR1C1" src="images/background/hdr_r1_c1.gif" bor...

I don't have problems at any other website....


"S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message
news:10*************@corp.supernews.com...
TJS,

That's interesting. I am using IE 6 and everything works fine. I've had other co-workers test this via IE 6 from 5 other computers and all buttons and links on my site work fine. You must have something in IE's settings changed. If, because of the recent security issues, you've turned of
scripting that could be it. You'll find that .NET relys heavily on
scripting.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"TJS" <no****@here.com> wrote in message
news:O%****************@tk2msftngp13.phx.gbl...
> using IE6, the links on the left side of your web page fail

consistently
> for me....
>
>
> "S. Justin Gengo" <sjgengo@aboutfortunate[no-spam].com> wrote in message > news:10*************@corp.supernews.com...
> > Trint,
> >
> > If you're interested I've created a javascript object you may download > from
> > my site which has many useful javascripts specifically designed
for use
in
> > .NET. One of them does exactly what you need to do: It let's you

specify
a
> > new window to open and gives easy access to setting all of the

available
> > properties like whether or not to show the toolbar, etc.
> >
> > All of the code and objects on my site are free and all projects

source
> code
> > is downloadable as version 1.1 .NET projects.
> >
> > --
> > Sincerely,
> >
> > S. Justin Gengo, MCP
> > Web Developer / Programmer
> >
> > www.aboutfortunate.com
> >
> > "Out of chaos comes order."
> > Nietzsche
> > "Trint Smith" <tr********@hotmail.com> wrote in message
> > news:eF**************@tk2msftngp13.phx.gbl...
> > > Ok,
> > > On my website, tribidz.com, there is one page that needs to not

have any
> > > buttons or menu or address bar. How can I do this? What is the

html
> > > code or whatever?
> > > Thanks,
> > > Trint
> > >
> > > .Net programmer
> > > tr********@hotmail.com
> > >
> > > *** Sent via Developersdex http://www.developersdex.com ***
> > > Don't just participate in USENET...get rewarded for it!
> >
> >
>
>



Nov 18 '05 #14

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

Similar topics

11
by: rigga | last post by:
Hi, I am trying to code a menu for a webpage, the menu is broken up to groups i.e: Home Group1  menuitem1  menuitem2  menuitem3
5
by: The Bicycling Guitarist | last post by:
Thanks to Yukka for improving my <h1> content and to Andy Dingley for pointing out how illogical my code was. I have converted my nav buttons to a list and eliminated the horrid spangap class of...
4
by: nsr93 | last post by:
I am not sure if this was the proper group to post this, but here is my question: I am a Java consultant. I have new client I am working for to make a web based application similar to an...
0
by: Frnak McKenney | last post by:
Environment: OS Name Microsoft Windows 2000 Professional Version 5.0.2195 Service Pack 4 Build 2195 Microsoft Visual C# .NET 2003 Microsoft Development Environment 2003 Version 7.1.3088...
0
by: Kristian | last post by:
Hi, We have recently added some icons onto buttons for a windows app (VS2005). While we are in the designer they all look ok, but once we run the program some of the icons disappear from the...
4
Maril
by: Maril | last post by:
Hi I'm a beginner in Flash and I was wondering if it's possible, for example : if you have 4 buttons on a page, that when the mouse is over one button, that the others disappear(fade out) and...
1
by: bhosalevivek | last post by:
I did this code from Dynamic Drive DHTML. it's working properly, but now I need submenu for "Submenu 1.2", means when I take mouse on "Submenu 1.2" I need to display "Submenu 1.2.1". I try to do...
4
by: Miki | last post by:
Hello, I have a simple Tkinter window with and buttons at the bottom. When I resize the window to be shorter, the first thing to disappear are the buttons, however I want these button to be...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.