NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: HPabon on June 22, 2012, 09:24:02 PM

Title: Display values/fields in top of form
Post by: HPabon 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

Title: Re: Display values/fields in top of form
Post by: DonRidley 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
Title: Re: Display values/fields in top of form
Post by: HPabon 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.

Title: Re: Display values/fields in top of form
Post by: HPabon 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.