I am using "highslide-with-html.js" to open Pop up and Display a .aspx page on given URL.
But In IE Explorer it gives problem. When Popup opens on Right-Top Corner their is "Move" and "Close" links.
When i clicks on "Close"button it doesnt CLose and "#" will be added at the End of URL.
in .aspx page
- Code: Select all
<script type="text/javascript" src="js/highslide/highslide-with-html.js"></script>
<link rel="stylesheet" type="text/css" href="js/highslide/highslide.css" />
<script type="text/javascript">
hs.graphicsDir = 'js/highslide/graphics/';
hs.showCredits = false;
hs.cacheAjax = false;
</script>
And calling function like this
- Code: Select all
<a onclick="return hs.htmlExpand(this, { objectType: 'iframe', width:460, height:400} )" href='MesoDetails.aspx?MicroID=<%# Eval("MicroID") %>'>
<asp:Button ID="btnAddMeso" runat="server" Text="Add Meso" />
</a>
please help me!
Thanks In Advance!