NetTalk Central

Author Topic: Display values/fields in top of form  (Read 4152 times)

HPabon

  • Newbie
  • *
  • Posts: 20
    • View Profile
    • Email
Display values/fields in top of form
« on: June 22, 2012, 09:24:02 PM »
Hi,

I need to display the user name plus some other information in the top(header) of the form once the user logs in.

Is there a way to do that?

I will appreciate any help.

Thanks


DonRidley

  • Don Ridley
  • Global Moderator
  • Hero Member
  • *****
  • Posts: 729
  • donaldridley2011@gmail.com
    • View Profile
    • Email
Re: Display values/fields in top of form
« Reply #1 on: June 23, 2012, 07:31:01 AM »
Sure,

Data stored in variables can be displayed by using this tag:

<!-- Net:s:YourVariableHere -->

You can embed that tag inside custom HTML code and do all sorts of cool things.

Look for the XHTML tab in your PageHeaderTag. 

Good Luck,

Don
"Eliminate the impossible, whatever remains, however unlikely, must be the truth."

NetTalk 12.55
Clarion 11

HPabon

  • Newbie
  • *
  • Posts: 20
    • View Profile
    • Email
Re: Display values/fields in top of form
« Reply #2 on: June 23, 2012, 06:34:18 PM »
Hi Don,

Thanks for the reply.

Now, how can I position the fields in a specific position?

Thanks in advance.


HPabon

  • Newbie
  • *
  • Posts: 20
    • View Profile
    • Email
Re: Display values/fields in top of form
« Reply #3 on: June 23, 2012, 06:59:32 PM »
Hi,

I found the answer to my question: ;D

<DIV class="wp-nombre-div">
<!-- Net:s:MyName -->
<!-- Net:s:MyAddress -->
</DIV>

And then play with the .CSS file.