Click to See Complete Forum and Search --> : Hiding menu's at the top of the browser


"YT"
04-27-2006, 10:24 AM
Is there any easy way to do this?

also

the code i have produced works in IE but does work fully in Firefox, does anyone know why?


<html><style type="text/css">
<!--
body {
background-color: #FFFFCC;
}
-->
</style>
<Body>
<%

set conn=Server.CreateObject("ADODB.Connection")
conn.Open "motobike"
set rs=Server.createObject("ADODB.Recordset")

rs.open "select * from motobikes", conn
%>

<Table width= "80%" border="1" align="center" bgcolor="#A4BBDD">

<th>Make</th>
<th>Model</th>
<th>Description</th>
<th>Price</th>
<th>Picture</th>

<tr>
<%Do until rs.EOF
<!--For each x in rs.fields%>
<td><div align="center">
<% response.write rs("make")&"<br>"%>
</div></td>
<div align="center">
<td><%response.write rs("model")&"<br>"%>
</div>
<div align="center">
<td><%response.write rs("description")&"<br>"%>
</div>
<div align="center">
<td><%response.write FormatCurrency(rs("Price"),2)&"<br>"%>
</div></td>
<td><a href=<%=rs("picture_FN")%> Target="_blank"</a>
<width="120"><img src="<%=rs("picture_FN")%>" width="<%=120%>" height="<%=110%>" alt="<%=100%>"/>
</td>
</tr>


<%rs.movenext
Loop%>
</Table>
</Body>
</html>


Thanks again

lmf232s
04-28-2006, 01:50 PM
what menus?

The File, Edit, View, etc. Menu?

"YT"
04-28-2006, 03:55 PM
what menus?

The File, Edit, View, etc. Menu?

Yeah them ones :)

lmf232s
04-28-2006, 03:59 PM
I belive the only way to hide those menues are to open the window using javascript.

window.open(url, name, features)
window.open("PageName.asp", "TestMe", "menubar=no")

Here is a link to see what other features you can set.
http://www.devguru.com/Technologies/ecmascript/quickref/win_open.html

"YT"
04-28-2006, 04:03 PM
Thanks will give it ago