Jump to content

Recommended Posts

Posted

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> 

Posted

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>

post-34-0-33904100-1325191845_thumb.png

×
×
  • Create New...