Links to the standard project entry page |
Manual -> Web Server and Web Server Pro -> Creating the HTML project entry page -> Example from the WEB server CD -> Links to the standard project entry page |
Show all Hide all |
In our example a Standard, a Full screen and a New window mode are available for the start of the WEB client:
Standard
The WEB Client and so the project is displayed within the HTML frame set.
<html>
<head>
</head>
<body>
<a href= ../ init. html
>Link_für_Stardard</a>
</body>
</html>
Fullscreen
The WEB client and so the project is opened in an new browser window in fullscreen mode, with the help of a Java script. The path ofindex.html is globally defined in the Java script function.
<html>
<head>
<script>
<!--
function fullwin(){
window.open( ../projekt_M.htm
,,fullscreen)
}
//-->
</script>
</head>
<body>
<a href=#
onclick=javascript:fullwin()>Link_für_Fullscreen</a>
</body>
</html>
New Window
The WEB client and so the project is opened in a new browser window in normal mode.
<html>
<head>
</head>
<body>
<a href= ../ init . html
target=_blank>Link_für_Stardard</a>
</body>
</html>