http://blog.csdn.net/heiyeshuwu/article/details/7972050
分类目录归档:Uncategorized
create web service from ASP.Net MVC4
Getting JSON from ASP.Net
1. The chef said, I should use a normal aspx to solve this task, and write sth, like reponse.write(“accpeti encoding : txt/json”), it is ugly. Please read this atricle from Johnny Code (http://johnnycode.com/2012/07/16/getting-json-from-asp-net-beautiful-good-bad-ugly/). Why it is ugly.
2 by defualt .net response only to POST Request and return XML. as wrapper. You should add the following http header in your request.
Content-Type: application/json; charset=utf-8
An end the chef want to sue handler to solve the URL rewrite problme, show me some code in web.config to define a handler.
I found this article about add handler in web.config (http://www.yongfa365.com/Item/configuration-configSections-SingleTagSectionHandler-DictionarySectionHandler-NameValueSectionHandler.html)
SVN Schema
Command to change Schema in T-SQL
ALTER SCHEMA yournewschama TRANSFER oldschama.Tablename
花括号
Geschweifte/geschwungene Klammern
http://de.wikipedia.org/wiki/Klammer_(Zeichen)#Geschweifte.2Fgeschwungene_Klammern
Opera SVG 的背景透明问题 fill with transparent bug
Opera SVG的fill 命令无法正确处理关键字 transparent.
如果要用到背景透明,需要用rgba格式,比如 fill: rgba(255,255,255, 0.0) 来代替 fill: rgba(transparent) .
在线测试
http://www.w3schools.com/svg/tryit.asp?filename=trysvg_rect
obama的筹款网站
http://www.ruanyifeng.com/blog/2012/12/obama_fundraising_website.html
TRUNCATE DROP DELETE 区别
TRUNCATE 快速删除 表数据,不保留日志,不可以被恢复 慎用
delete 按照条件删除表数据 ,保留表结构,会保留日志,可以被恢复
drop 删除 表结构 和表数据 会保留日志,可以被恢复
使用firebug 来 debug js详解
http://www.cnblogs.com/see7di/archive/2011/11/21/2257442.html