October 2006 - Posts

While I use Generic Collections with cache, after some time it dissapers from the Cache object. And worst case is its not all the time. This happens only sometimes when I run the application. Its works well in the debugging mode. I tried to get some help from the Microsoft newsgroups but no clear answer. Seems like lots of developers are facing the same problem. Anyway Im still strugling to find a solution for that.

And also replacement for ASP.NET 1.1 SmarNavigation is ASP.NET 2.0 MainScrollPositionOnPostBack. Use it in your apps to enhace user experience.
<pages maintainScrollPositionOnPostBack="true" />
Posted by Ludmal De Silva | with no comments
Did anybody use Microsoft Virtual Earth on web application ? I just tried it yesterday..  Its awesome..... and its pretty easy to implement. All we have to insert in the page is :
<html>
   <head>
      <title></title>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      <script src="http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js"></script>
      <script>
      var map = null;
           
      function GetMap()
      {
         map = new VEMap('myMap');
         map.LoadMap();
      }  
      </script>
   </head>
   <body onload="GetMap();">
      <div id='myMap' style="position:relative; width:400px; height:400px;"></div>
   </body>
</html>
    well, I couldn't post anything in my blog from 2 weeks now due to the very tight schedule at work... I was developing in ASP.NET 2.0 with Atlas. And played with new Atals Control Toolkit. Its really coolll, but the only drawback is that the page rendering is slow..
Posted by Ludmal De Silva | with no comments