Skip to main content
Participant
June 2, 2008
Question

Displaying Cfform

  • June 2, 2008
  • 2 replies
  • 1069 views
Hi, I need some help. I am a newbie with coldfusion.

I created a page to insert a record on my database using CF8, I used CFFORM to input the requiered data. When i test it on my machine it works ok, but when I publish it doesn't show... am I missing something?

Here's the code...

<cfform action="#CurrentPage#?#CGI.QUERY_STRING#" method="POST" name="nwusrre" format="flash" skin="halogreen" id="nwusrre" ><p>
<cfinput name="pais" type="hidden" id="pais" value="#URL.pais#" />
<cfinput name="estado" type="hidden" id="estado" value="#URL.estado#" />
<cfinput name="municipio" type="hidden" id="municipio" value="#URL.municipio#" />
<cfinput type="text" name="nombre" label="Nombre" required="yes" id="nombre" size="30" />
<cfinput type="text" name="seudonimo" label="Seudónimo" required="yes" id="seudonimo" size="25" />
<cfinput type="text" name="email" label="Correo electónico" validate="email" required="yes" id="email" size="30" />
<cfinput type="password" name="contrasena" label="Contraseña" required="yes" id="contrasena" size="30" />
<cfinput type="hidden" name="raiocread" value="#DateFormat(now(),"MM/DD/YY")#" id="raiocread">
<cfinput name="grupo" type="hidden" id="grupo" value="01" />
<cfinput name="foto" type="hidden" id="foto" value="images/foto_pret.gif" />
<cfinput name="saldo" type="hidden" id="saldo" value="4" />
<cfinput name="urbanizacion" type="hidden" id="urbanizacion" value="0000" />
<cfinput type="submit" name="newusr" id="newusr" value="Continuar al paso 3">
<cfinput type="hidden" name="MM_InsertRecord" value="nwusrre" />
</p></cfform>

Thanks
    This topic has been closed for replies.

    2 replies

    Inspiring
    June 16, 2008
    You might need to add a width & height for the form for it to display in IE.
    Participating Frequently
    June 16, 2008
    Please check if there is any version difference between your local and web server