HTML coding

G

Guest

Dear Sirs
I have the following code in my html page:

<tr>
<td align="left" valign="top"
class="formpagetablelabel"> initialinvestment</td>
<td class="formpagetablelabel" align="right"><input
class="formpagetablefield" type="number" name="initialinvestment" size="8"
Value="<%=formatNumber(Session("initialinvestment"),2)%>"font
class="formpagetablefield">
US$</div></td>
</tr>

This command takes data from my database and shows the value in the
formpagetablefield as a number.
I would like that the:
Value="<%=formatCurrency(Session("initialinvestment"),2)%>"
has the format that negative numbers are in RED, in BRACKETS and to align to
the right of the formpagetablefield.

How do I have to change the code to get the result?

Many thanks in advance
Klaus
 
S

Stefan B Rusynko

Again posting repeatedly multiple times will not help in getting an answer
- stick to 1 thread
- the answer is in my response of today to one of your many posts

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Dear Sirs
| I have the following code in my html page:
|
| <tr>
| <td align="left" valign="top"
| class="formpagetablelabel"> initialinvestment</td>
| <td class="formpagetablelabel" align="right"><input
| class="formpagetablefield" type="number" name="initialinvestment" size="8"
| Value="<%=formatNumber(Session("initialinvestment"),2)%>"font
| class="formpagetablefield">
| US$</div></td>
| </tr>
|
| This command takes data from my database and shows the value in the
| formpagetablefield as a number.
| I would like that the:
| Value="<%=formatCurrency(Session("initialinvestment"),2)%>"
| has the format that negative numbers are in RED, in BRACKETS and to align to
| the right of the formpagetablefield.
|
| How do I have to change the code to get the result?
|
| Many thanks in advance
| Klaus
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top