Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Displaying Cfform

New Here ,
Jun 01, 2008 Jun 01, 2008
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
1.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 16, 2008 Jun 16, 2008
Please check if there is any version difference between your local and web server
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 16, 2008 Jun 16, 2008
LATEST
You might need to add a width & height for the form for it to display in IE.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources