以下是我的vb.net代码
ClientScript.RegisterStartupScript([GetType](), Guid.NewGuid().ToString(), "javascript:MarkerFunction('" & dt.Rows(i)("vehno") & "','" & dt.Rows(i)("trackdt") & "','" & Lat & "','" & Lon & "','" & VehImage & "','" & dt.Rows(i)("City") & "','" & dt.Rows(i)("Speed") & "');", True)
以下是我的JavaScript Function
<script type="text/javascript">
function init()
{
map = new OpenLayers.Map("basicMap");
var mapnik = new OpenLayers.Layer.OSM();
var fromProjection = new OpenLayers.Projection("EPSG:4326"); // Transform from WGS 1984
var toProjection = new OpenLayers.Projection("EPSG:900913"); // to Spherical Mercator Projection
var position = new OpenLayers.LonLat(78.0000,21.0000).transform( fromProjection, toProjection);
var zoom = 5;
map.addLayer(mapnik);
map.setCenter(position, zoom );
var vectorLayer = new OpenLayers.Layer.Vector("Overlay");
function MarkerFunction(VehNo,Trackdt,Lat,Lon,VehImage,City,Speed)
{
alert('hii');
var feature = new OpenLayers.Feature.Vector
(
new OpenLayers.Geometry.Point( lon, lat ).transform(fromProjection, toProjection),
{description: 'Vehicle No : ' + VehNo+'<br>Track Date : ' + Trackdt +'<br> City : '+ City + '<br> Speed : '+ Speed } ,
{externalGraphic: VehImage, graphicHeight: 25, graphicWidth: 21, graphicXOffset:-12, graphicYOffset:-25 }
);
vectorLayer.addFeatures(feature);
}
//Add a selector control to the vectorLayer with popup functions
var controls =
{
selector: new OpenLayers.Control.SelectFeature(vectorLayer, { onSelect: createPopup, onUnselect: destroyPopup })
};
function createPopup(feature)
{
feature.popup = new OpenLayers.Popup.FramedCloud("pop",
feature.geometry.getBounds().getCenterLonLat(),
null,
'<div class="markerContent">'+feature.attributes.description+'</div>',
null,
true,
function() { controls['selector'].unselectAll(); }
);
map.addPopup(feature.popup);
}
function destroyPopup(feature)
{
feature.popup.destroy();
feature.popup = null;
}
map.addControl(controls['selector']);
controls['selector'].activate();
map.addLayer(vectorLayer);
}
</script>
<body onload="init()">
<div id="basicMap">
</div>
</body>
我想从代码隐藏文件中调用MarkerFunction
但是我无法调用它。
我尝试了一切,但我不知道我的代码有什么问题。
任何帮助将不胜感激。在此先感谢...
答案 0 :(得分:1)
您不能只通过Servers vb.net代码在客户端上执行JavaScript。这怎么办?代码位于两台不同的计算机上,这些计算机仅通过HTTP连接,即无状态。因此,当您的客户端关闭连接时,您的服务器无法访问它。
想一想,你也可以有多个客户。
您的服务器无法知道您的网页是否仍在客户端上打开。这是HTTP的概念,而不是asp.NET。
为了能够在客户端上调用某些内容,客户端需要保持打开的连接。
根据您的使用情况,您可以进行简单的轮询(您真的不应该,但在黑暗的日子里我们都做了),长轮询(彗星< / em>),或使用WebSockets。
我希望这可以回答你这个问题并给你很多google。