Hi all,
I am facing an issue when I try to invoke an html from my servlet in Mozilla browser .It works fine with IE
This open the source code of the HTML file in the browser .
But the Html file is not displayed instead the source code of the html file is displayed
I am facing an issue when I try to invoke an html from my servlet in Mozilla browser .It works fine with IE
Code:
out.println("window.open(\"../login/html/AdminLogin.html\",loginType,style)");
out.println("document.forms[\"form1\"].Lang_Code.value = loginType[2];");
out.println("document.forms[\"form1\"].AgentsTimeDiff.value = '"+timeDiff+"'");
But the Html file is not displayed instead the source code of the html file is displayed
Comment