Maison > interface Web > js tutoriel > textarea的value是html文件源代码,存成html文件的代码_表单特效

textarea的value是html文件源代码,存成html文件的代码_表单特效

WBOY
Libérer: 2016-05-16 19:14:47
original
1243 Les gens l'ont consulté

textarea的value是html文件源代码,如何把源代码存成html文件??   
  如   
     
  

   
     
  hmtl页面   
     
     
      alert(ok);   
     
     

1楼
dim   fileNameStr   
  fileNameStr   =   Trim(Request.Form("fileName"))   
  dim   fileContentStr   
  fileContentStr   =   Trim(Request.Form("fileContent"))   
  Set   fs   =   CreateObject("Scripting.FileSystemObject")   
  dim   filePath   
  filePath   =   Server.MapPath("PageURL/"   &   fileNameStr)   
  Set   a   =   fs.CreateTextFile(filePath,   True)   
  a.WriteLine(fileContentStr)   
  a.Close 
2楼
在客户端实现保存的方法:   
  
   
     
  <script> <BR> <!-- <BR> function Save() <BR> { <BR> var txt = document.all.mm; <BR> var ww = window.open("", "_blank", "width=100px, height=100px"); <BR> ww.document.write(txt.value); <BR> ww.document.close(); <BR> ww.document.execCommand('SaveAs'); <BR> //ww.document.execCommand('Saveas',false,'c:\\test.htm'); <BR> ww.close(); <BR> } <BR> //--> <BR> </script>
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal