Hi,
I have a html application file ( .hta ) under that i need to call one .html file. Every thing is opening as expected but the navigation of back and forth is not happening.
i,e ALT + backArrow , ALT + forwardArrow , backspace keys which is use as shortcut for navigation back and forth in .html.
Is there some limitation to this .hta ? below is the script.
<HEAD>
<TITLE>Authentication: Login</TITLE>
<HTA:APPLICATION ID="INTRANET LOGIN"
APPLICATIONNAME="Intranet Sample Application"
BORDER="thin"
BORDERSTYLE="normal"
CAPTION="yes"
CONTEXTMENU="no"
ICON="/graphics/creature.ico"
SHOWINTASKBAR="no"
SINGLEINSTANCE="yes"
SYSMENU="yes"
NAVIGABLE="yes"
MAXIMIZEBUTTON="no"
MINIMIZEBUTTON="no" >
</HEAD>
<script language='JScript'>
<!--
function onpageload()
{
window.moveTo(0, 184);
window.resizeTo(1014, 554);
}
//-->
</script>
<frameset border="0" rows="100%,*" onLoad="onpageload()" >
<FRAME style="width:100%; height:100%" src="http://msdn.microsoft.com/en-us/library/3d6wt21y(VS.80).aspx"/>
</frameset>
Many thanks in advance.
Narci