I created a layerfile in Arcmap and set the html popup as a formatted page based on a xsl template.here is a portion of my xsl template:<xsl:when test="FieldName[starts-with(., 'COPROPCD')]">
<a <xsl:attribute name="href">file://isd10/share/ALLCOUNTIES.htm?ServerFilter="COUNTYCODE='<xsl:value-of select="FieldValue" />'"
</xsl:attribute><xsl:value-of select="FieldValue"/>
</a>
</xsl:when>
The code creates a link out of my COPROPCD field and opens a Microsoft Data Access Page to the info filtered by the current record's COPROPCD. It works well in Arcmap. However, in Arcgis Explorer Build 1500 (maybe all builds) when you click on the hyperlink that was created, it opens a new browser window with no server filter set. It redirects me to file://isd10/share/Scott/ALLCOUNTIES.htm and ignores everything after the "?". I don't get it. The interesting thing is when you right click on the link in the pop-up in AGX and click open, it works?!? I just need it to work when the user clicks the link, not right click>open the link.