Hey Phil,
It's really easy.
Just open your code behind page for postad.
In my case it's PostAd.aspx.vb
Scroll down towards the bottom and you will find a sub called LoadPreviousAd
And you'll probably see this PriceTextBox.Text = ad.Price
Change it to this:
PriceTextBox.Text = String.Format("{0:f2}", ad.Price)
Note the 2, it represents after the decimal.
And the f tells it it's a number so over 1000 it adds a comma 1,000
If you change the f to a c it will use a comma, and add your set currency, probably $.
Good Luck
Daniel
Please remember to click “Mark as Answer” on the post that helps you.
This can be beneficial to other community members reading the thread.