. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 87.98.249.37 / Your IP : 216.73.216.208 [ Web Server : Microsoft-IIS/10.0 System : Windows NT NS3076740 10.0 build 17763 (Windows Server 2019) AMD64 User : IWPD_292(growel19p) ( 0) PHP Version : 8.3.12 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/growel.com/httpdocs/ |
Upload File : |
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Network.aspx.cs" Inherits="GrowelWeb.Network" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="Includes/css/map.css" rel="stylesheet" />
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css" />
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<script>
$(document).ready(function () {
$('.myimg').tooltip({
content: function () {
return $(this).prop('title');},
position: { my: 'center bottom', at: 'center top-10' },
tooltipClass: "myclass",
disabled: true,
close: function (event, ui) { $(this).tooltip('disable'); }
});
$('.myimg').on('click', function () {
$(this).tooltip('enable').tooltip('open');
});
})
</script>
<style>
label {
display: inline-block;
width: 5em;
}
</style>
<title>Locations</title>
</head>
<body>
<form id="form1" runat="server">
<div id="map">
<div id="places">
<asp:Repeater ID="dtlstplaces" runat="server">
<ItemTemplate>
<div class='place' title='<%#Eval("location") %> <br> <%#Eval("Address") %>' style='<%#GetStyle(Eval("x").ToString(),Eval("y").ToString())%>'>
<img src="https://growel.com/images/network/<%#Eval("location_type").ToString() %>.png" align="absmiddle" class="myimg" />
<small style="cursor: pointer" class="myimg"><%#Eval("location") %></small>
<div class="address"><b><%#Eval("location") %></b><br /><%#Eval("Address") %></div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
<img src="https://growel.com/images/map.jpg" id="mapimg" />
</div>
</form>
</body>
</html>