Hallo zusammen,
ich habe kaum Erfahrung in Sachen HTML und möchte auch nur ein kleines Projekt realisieren.
Ich benutze eine Automatisierungssoftware (EventGhost) die einen Webserver bietet, der auf entsprechende Events reagiert. Ein solches Event wird so ausgelöst: http://[IP]:[Port]/?[Eventname] also z.b. http://127.0.0.1:1000/?Playbutton Rufe ich diesen Link auf, wird ein Event erzeugt mit dem Namen 'Playbutton'.
Die Seite an der ich bastle soll eine Fernbedienung werden und habe dafür z.B. ein Bild mit einem Play Symbol mit 'http://127.0.0.1:1000/?Playbutton' verlinkt. So weit, so gut - das Ganze funktioniert auch, EventGhost erhält das Event, doch wenn ich auf das verlinkte Bild klicke, springt die Seite automatisch an den Seitenanfang.
Meine Frage ist: Wie verhindere ich das?
Vielen Dank für eure Hilfe!
Hier ist der genaue Quelltext (erzeugt von Microsoft Expression Web 4). Der Einfachheit halber für ein Beispiel habe ich oben einen anderen Titel für das Event genannt.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="de" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>DVB Viewer Steuerung</title>
<style type="text/css">
.auto-style1 {
text-align: center;
}
</style>
</head>
<body style="background-color: #808080">
<table align="center" style="width: 100%">
<tr>
<td class="auto-style1"><a href="?DVBMenu">
<img height="" src="menu.png" width="100%" class="auto-style2" /></a></td>
<td class="auto-style1"><a href="?DVBGuide">
<img height="" src="Guide.png" width="100%" class="auto-style2" /></a></td>
<td class="auto-style1"><a href="?DVBMediaCenter">
<img height="" src="media-center-film-strip-photograms.png" width="100%" class="auto-style2" /></a></td>
<td class="auto-style1"><a href="?DVBExit">
<img height="" src="exit.png" width="100%" class="auto-style2" /></a></td>
</tr>
<tr>
<td class="auto-style1"><a href="?DVBRed">
<img height="" src="red-square-rounded-512.png" width="100%" class="auto-style2" /></a></td>
<td class="auto-style1"><a href="?DVBGreen">
<img height="" src="green-square-rounded-512.png" width="100%" class="auto-style2" /></a></td>
<td class="auto-style1"><a href="?DVBYellow">
<img height="" src="yellow-square-rounded-512.png" width="100%" class="auto-style2" /></a></td>
<td class="auto-style1"><a href="?DVBBlue">
<img height="" src="blue-square-rounded-512.png" width="100%" class="auto-style2" /></a></td>
</tr>
</table>
<table align="center" style="width: 100%">
<tr>
<td></td>
<td><a href="?DVBUp"><img height="" src="up.png" width="100%" class="auto-style2" /></a></td>
<td></td>
</tr>
<tr>
<td><a href="?DVBLeft"><img height="" src="left.png" width="100%" class="auto-style2" /></a></td>
<td><a href="?DVBOK"><img height="" src="keyboard-key-enter.png" width="100%" class="auto-style2" /></a></td>
<td><a href="?DVBRight"><img height="" src="right.png" width="100%" class="auto-style2" /></a></td>
</tr>
<tr>
<td></td>
<td><a href="?DVBDown"><img height="" src="down.png" width="100%" class="auto-style2" /></a></td>
<td></td>
</tr>
</table>
</body>
</html>