I have a .NET 4.0 application which uses RadGrid in a web-page. When I open my page on 1st machine, I got the following HTML,
<div id="ctl00_mainContentPlaceHolder_ctl00_mainContentPlaceHolder_radMainPanel">
<div id="ctl00_mainContentPlaceHolder_radMain" class="RadGrid RadGrid_Metro">
<img width="64px" style='max-height: 100px; max-width: 100px;' src="/Data/Images/2013_09_16_17_18_37_1837_30f9.jpg" />
</td><td>
and when I open the same page on second machine I got,
<div id="ctl00_mainContentPlaceHolder_ctl00_mainContentPlaceHolder_radMainPanel">
<div id="ctl00_mainContentPlaceHolder_radMain" class="RadGrid RadGrid_Metro">
<table class="rgMasterTable" id="ctl00_mainContentPlaceHolder_radMain_ctl00" style="width:100%;table-layout:auto;empty-cells:show;">
<colgroup>
<col style="width:35px" />
<col />
<col />
<col />
<col />
<col />
<col />
...............................................................
The second one is correct but why my first machine does not show any table element which is the root cause.
UPDATE:
After a lot of search, I was able to find the answer at here.
<add key="vs:EnableBrowserLink" value="false" />