1
Answer

Performance counters limitation

I tried adding too many performance counters to the Performance Monitor(Perfmon). I got a message called "Only some of the counters will be tracked and not all". Checked Microsoft site and couldn't find much information on it.

Does anyone know how many counters can be added and can be monitored? 

 
Answers (1)
0
Vikram
NA 319 262.4k 14y
Hi yashwant,
  
    Just Define variable in the Markup it consider as Global.

e.g
  
   <script type='text/javascript>
       var Navigateurl="~/block/abc.aspx";
         function pageLoad()
         {
                 //do something
         }

         function otherFunction()
        {
            var newurl = Navigateurl;
        }

</script>
This way you can declare the global variable in the markup.

Hope this will help you.

Regards,
 Vikram