dentro de un archivo HTA tengo un iframe y no esta enviando las cookies, hay alguna forma de que las envie correctamente.
I've an iframe inside of a HTA file, when I call the inner page cookies aren't send to the server.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<HTA:APPLICATION 
  ID="oHTA" 
  APPLICATIONNAME="Emp"
  ICON='img/icono.ico'
  SCROLL="no"
  SINGLEINSTANCE="yes"
  SELECTION='yes'
  NAVIGABLE='yes'
  SHOWINTASKBAR='Yes'
  WINDOWSTATE='normal'>
<title>HTA</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />
</head>
<body> 
  <iframe application="yes" width="238px" src="www.mypage.com" height="250px" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" id="frameId" name="frameId"></iframe>
</body>
</html>