码迷,mamicode.com
首页 > Windows程序 > 详细

ASP.NET-js和C#混合编程的例子

时间:2016-03-27 17:58:43      阅读:514      评论:0      收藏:0      [点我收藏+]

标签:

使用<text>这个伪元素来强制Razor从编译模式返回到内容模式:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script type="text/javascript">
  
//some javascrpt code here to display map etc
  
  
//now add markers
 @foreach (var item in Model) {
    <text>
      var markerlatLng = new google.maps.LatLng(@(Model.Latitude), @(Model.Longitude));
      var title = ‘@(Model.Title)‘;
      var description = ‘@(Model.Description)‘;
      var contentString = ‘<h3>‘ + title + ‘</h3>‘ + ‘<p>‘ + description + ‘</p>‘
  
      var infowindow = new google.maps.InfoWindow({
          content: contentString
      });
  
      var marker = new google.maps.Marker({
          position: latLng,
          title: title,
          map: map,
          draggable: false
      });
  
      google.maps.event.addListener(marker, ‘click‘, function () {
          infowindow.open(map, marker);
      });
  
   </text>
      }
</script>





ASP.NET-js和C#混合编程的例子

标签:

原文地址:http://www.cnblogs.com/weloveshare/p/2c9bac62b6977e5107cf462b893a81af.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!