英语中的口头赞美短句

You have a good sense of humor.
你真幽默。(别人讲笑话不管好笑不好笑,都用这句。)

Your Chinese is really surprising!
你的中文令人惊讶!(用来鼓励说汉语的老外。)

You have a very successful business.
你的事业很成功。(现代人喜欢听!)

Your are very professional.
你非常专业。(他会更认真!)

Your are so smart.
你非常聪明。(谁都愿意听!)

I envy you very much.
我非常羡慕你。(接下来你可以诉苦了。)

You two make a lovely couple.
你们真是天生的一对。(他们会为选择了彼此而自豪。)

Your are really talented.
你很有天赋。(给他动力和勇气。)

You look nice in that color.
你穿那种颜色很好看。(搞不好,她会买一大堆那种颜色的衣服。)

You have a good taste.
你很有品位。(高层次的赞美。)

You look like a million dollars.
你看上去帅呆了。(多么昂贵的赞美!)

You look great today.
你今天看上去很棒。(每天都可以用!)

We are so proud of you.
我们真为你骄傲。(表扬孩子最有效。)

I’m very pleased with your work.
我对你的工作非常满意。(正式、真诚的赞扬。)

This is really a nice place.
这真是个好地方!(随口就说且效果很好的赞美!)

You are looking sharp.
你看上去真精神!(可令他兴趣盎然。)

Everything tastes great.
每样东西都很美味。(吃完了就说这句。)

I admire/respect your work.
我对你的工作表示敬意。(世界通用!)

You’ve got a great personality.
你的个性很好。(非常安全的表扬。)

Styling Excel cells with mso-number-format

mso-number-format:”0″ NO Decimals
mso-number-format:”0\.000″ 3 Decimals
mso-number-format:”\#\,\#\#0\.000″ Comma with 3 dec
mso-number-format:”mm\/dd\/yy” Date7
mso-number-format:”mmmm\ d\,\ yyyy” Date9
mso-number-format:”m\/d\/yy\ h\:mm\ AM\/PM” D -T AMPM
mso-number-format:”Short Date” 01/03/1998
mso-number-format:”Medium Date” 01-mar-98
mso-number-format:”d\-mmm\-yyyy” 01-mar-1998
mso-number-format:”Short Time” 5:16
mso-number-format:”Medium Time” 5:16 am
mso-number-format:”Long Time” 5:16:21:00
mso-number-format:”Percent” Percent – two decimals
mso-number-format:”0%” Percent – no decimals
mso-number-format:”0\.E+00″ Scientific Notation
mso-number-format:”\@” Text
mso-number-format:”\#\ ???\/???” Fractions – up to 3 digits (312/943)
mso-number-format:”\0022£\0022\#\,\#\#0\.00″ £12.76
mso-number-format:”\#\,\#\#0\.00_ \;\[Red\]\-\#\,\#\#0\.00\ “ 2 decimals, negative numbers in red and signed
(1.56   -1.56)

用法举例:

当我们用<%@page contentType=”application/vnd.ms-excel; charset=UTF-8″%>的方法导出网页文件为excel时,如果导出的数据中有数字以0开头,则该0会被省略,为了保留这个处于首位的0,可以在表格的style中加入:

style=’mso-number-format:”\@”;’

这样的话,导出的该表格中首位为0的数字就会将该0保留啦!

来源: http://blog.sina.com.cn/s/blog_5a010cd10100c3gs.html