Posted on 2010-09-08 23:51
lxasp 阅读(1376)
评论(1) 编辑 收藏 引用 所属分类:
AJAX
function textFileSaveU(FileUrl,Str){
// HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{00000566-0000-0010-8000-00AA006D2EA4} Compatibility Flags = 0
//try{
var stm;
stm = new ActiveXObject("ADODB.Stream.2.8");
stm.LineSeparator=13;
stm.Type=2;
stm.Mode=3;
stm.Charset="UTF-8";
stm.Open();
stm.WriteText(Str);
stm.SaveToFile(FileUrl,2);
stm.Close();
//}catch(e){}
}