闲来无事,弄了个 Fetion API 免费发送短信呵呵 有需要的朋友可以看看.地址:http://321cc.cn/api/飞信免费发短信API接口调用方式(通过HTTP访问以下网址、支持GET和POST):http://321cc.cn/api/wst321sms.php?username=您的移动飞信登录手机号&password=您的移动飞信登录密码&sendto=接收短信的飞信好友手机号&message=短信内容示例:http://321cc.cn/api/wst321sms.php?username=13800138000&password=123456&sendto=13912345678&message=短信内容

Code 2010-06-08

1.IIS下301重定向设置Internet信息服务管理器 -> 重定向目录 -> 重定向到URL,输入需要转向的目标URL,并选择"资源的永久重定向".设置如图:2.IIS下301全站精确重定向设置Internet信息服务管理器 -> 重定向目录 -> 重定向到URL,输入需要转向的目标URL后面加$S$Q,勾选"上面输入的准确URL"和"资源的永久重定向".比如google收录的地址为:http://321cc.cn/blog/article.asp?id=59需要重定向到http://321cc.cn/article.asp?id=59 .设置如图:

Code 2010-06-07

设计prestashop国内信用卡支付的插件,好不容易找到的英文教材。IntroductionHaving been looking for a Open Source shopping cart solution I stumbled on prestashop. It is a good solution which seemed to be what I was looking for. Like a lot of modern carts and CMSes it uses system of plug-in modules to add extra functionality that doesn't come as standard. The only slight problem with this module system, is how do you create a plug-in module!? It isn't exactly obvious.This guide will walk you through creating a simple off lin

Code 2010-04-20

Delphi 代码://----------------------------------------------------------------------------var  hMutex:hwnd;  ret:integer;begin  Application.Initialize;  hmutex:=createMutex(nil,false,'MyAPP');  ret:=getlasterror;  if ret <>error_already_exists then  begin    Application.CreateForm(TMainFrm, MainFrm);  Application.Run;  end  else  begin    Application.MessageBox('program已经运行,请不要运行两次','program不能运行',MB_搞定 or MB

Code 2010-01-18

MIME 类型MIME (Multipurpose Internet Mail Extensions) 是描述消息内容类型的因特网标准。MIME 消息能包含文本、图像、音频、视频以及其他应用程序专用的数据。官方的 MIME 信息是由 Internet Engineering Task Force (IETF) 在下面的文档中提供的:RFC-822 Standard for ARPA Internet text messagesRFC-2045 MIME Part 1: Format of Internet Message BodiesRFC-2046 MIME Part 2: Media TypesRFC-2047 MIME Part 3: Header Extensions for Non-ASCII TextRFC-2048 MIME Part 4: Registration ProceduresRFC-2049 MIME Part 5: Conformance Criteria and Examples不同的应用程序支持不同的 MIME 类型。下面的参考手册是由 Microsof

Code 2009-07-02