M
mulderbaba
Hi all,
I am outputting a table from a jsp to excel by
response.setContentType("application/vnd.ms-excel");
everythin' is ok with this. I have string fields contains strings like
'930000000000' but excel accepts them as numbers and displays like
9,3E+11.
I just wanna see 930000000000 and treat them as text. (if i put '
before the 930000000000 then the cells got texted but i see the ' also
in every cell.)
How can i tell the excel not to do this? should i use CSV format?
Thx.
mulderBaba
I am outputting a table from a jsp to excel by
response.setContentType("application/vnd.ms-excel");
everythin' is ok with this. I have string fields contains strings like
'930000000000' but excel accepts them as numbers and displays like
9,3E+11.
I just wanna see 930000000000 and treat them as text. (if i put '
before the 930000000000 then the cells got texted but i see the ' also
in every cell.)
How can i tell the excel not to do this? should i use CSV format?
Thx.
mulderBaba