i have split(replace(formatcurrency(20000.77),"$",""),".") in my code which is in asp and it displays result as $20,000.77
but i want result to be displayed as $20000.77
wht is the correct format to use.
thank you
i need $ sign to be displayed.i have 2 text boxes,one to display 20000 and other for decimal part 77.
i am using as
ghh=20000.77
vad=split(replace(formatcurrency(ghh),"$",""),".")
vad1=ghh(0)
vad2=ghh(1)
textbox1=vad1---displays 20000
textbox2=vad2----decimal part 77
everything is working,i want remove "comma"
thank you
i am using as
ghh=20000.77
vad=split(replace(formatcu
vad1=ghh(0)
vad2=ghh(1)
textbox1=vad1---displays 20000
textbox2=vad2----decimal part 77
everything is working,i want remove "comma"
thank you