d2ortiz Posted December 29, 2011 Posted December 29, 2011 Hi, I have the problem that non html code inside a unihtmlFrame word when the aplication is running in windows server 2003. my last test include the following code inside htmlframe: <TABLE CELLPADDING=3 CELLSPACING=1 height=100% Width=100% STYLE="background-color:#F0F0F0"> <TR VALIGN=TOP> <TD> <P>Socio</P> </TD> <TD WIDTH=50%> <P> <input name="usr" type=text onblur="alert('1');"> </P> </TD> </TR> <TR VALIGN=TOP> <TD> <P>Clave Secreta</P> </TD> <TD WIDTH=50%> <P> <input name="clavesecreta" type=password onblur="alert('2');"> </P> </TD> </TR> <TR VALIGN=TOP> <TD> <P>Código de Seguridad</P> </TD> <TD WIDTH=50%> <P> <input name="codigo" type=password onblur="alert('2');"> </P> </TD> </TR> </TABLE>
Administrators Farshad Mohajeri Posted December 29, 2011 Administrators Posted December 29, 2011 So what is the problem? What do you expect and what yo receive?
d2ortiz Posted December 29, 2011 Author Posted December 29, 2011 So what is the problem? What do you expect and what yo receive? The form in the image is what i expect to show (in windows 7 machine develeopment work correctly), but whe i install the aplication in window server 2003, the Uniforms shows but without the htmlfram content wich i include next: <TABLE CELLPADDING=3 CELLSPACING=1 height=100% Width=100% STYLE="background-color:#F0F0F0"> <TR VALIGN=TOP> <TD> <P>Socio</P> </TD> <TD WIDTH=50%> <P> <input name="usr" type=text onblur="ajaxRequest(LoginFrm.form, 'Usuario', ['Usuario='+this.value.toString()]);"> </P> </TD> </TR> <TR VALIGN=TOP> <TD> <P>Clave Secreta</P> </TD> <TD WIDTH=50%> <P> <input name="clavesecreta" type=password onblur="ajaxRequest(LoginFrm.form, 'ClaveSecreta', ['ClaveSecreta='+MD5(this.value)]);"> </P> </TD> </TR> <TR VALIGN=TOP> <TD> <P>Código de Seguridad</P> </TD> <TD WIDTH=50%> <P> <input name="codigo" type=password onblur="ajaxRequest(LoginFrm.form, 'Codigo', ['Codigo='+MD5(this.value)]);"> </P> </TD> </TR> </TABLE>
Administrators Farshad Mohajeri Posted December 30, 2011 Administrators Posted December 30, 2011 when application runs on 2003 server. Where do you test the client? On same PC? Browser type? I don't see anything here related to OS server.
Recommended Posts