[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.mobile

aligning text in label control

pat.simpson

1/27/2005 1:11:00 PM

Hello. Developing my first asp.net mobile application and I have a
text formatting issue that I think would be quite simple to resolve but
I cannot. I'm attempting to concatenate two strings and display in a
label control. Here's an example of the code I'm using.

Me.lblEquitySales.Text() = "Equity : " &
Format(drSqlSrv.Item("sales"), "###,###,###.##")

What I expect to see is something like this.

Equity : 999,999,999.99

What I do see is.

Equity:999,999,999.99

Notice the removal of all the blanks.
Is there an a way to resolve this. Thanks very much.

Pat Simpson