All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
详细学习PHP的日期时间函数date()_php资料_编程技术
C#中ListView控件应用实例
最具web2.0意义的豆瓣网站的几点价值_JavaScript技术_编程技术
.NET,3.x新特性之自动属性及集合初始化_.net资料_编程技术
HTML语言剖析(十一)排版标记_[Html教程]
关于.NET脏字过滤的算法代码_.net资料_编程技术
入门知识:动态网页PHP编程中字符串5个技巧_[PHP教程]
Windows,Apache,PHP,MySQL,搭建_php资料_编程技术
sqlserver转access笔记_[SQL,Server教程]
LINQ体验系列文章导航_[Asp.Net教程]
Reading number is top 10 pictures
Take you to walk into the most true north Korea rural2
Sora aoi possession photo2
来几张有特色的图片
Perfect small Laurie2
做运动的校花2
Japan sexy beauty passion photo
So beauty, will let you spray blood2
A man's favorite things15
Female model behind the bitterness, often being overcharged2
Photographed the passion of the clients and prostitutes in the sex trade picture2
Download software ranking
Eclipse-CALMSANNY (second edition)
Adobe Flash Player(IE) 10.0.32.18 浏览器专用的FLASH插件
Tram sex maniac 2 (H) rar bag12
Boxer vs Yellow1
dreamweaver8中文版
Unix video tutorial17
Boxer vs Yellow5
Tram sex maniac 2 (H) rar bag17
The king of fighters 97(Mobile phone games-apk)
在线棋牌游戏3.05版
aaa published in(发表于) 2013/12/18 7:55:38 Edit(编辑)
Asp.NET写文件_.net资料_编程技术

Asp.NET写文件_.net资料_编程技术

Asp.NET写文件_.net资料_编程技术-你的首页-uuhomepage.com

Asp.NET写文件的一个小实例程序。


#region 写文件
/****************************************
* 函数名称:WriteFile
* 功能说明:当文件不存时,则创建文件,并追加文件
* 参 数:Path:文件路径,Strings:文本内容
* 调用示列:
* string Path = Server.MapPath("Default2.aspx");
* string Strings = "这是我写的内容啊";
* EC.FileObj.WriteFile(Path,Strings);
*****************************************/
///


/// 写文件
///

/// 文件路径
/// 文件内容
public static void WriteFile(string Path, string Strings)
{
if (!System.IO.File.Exists(Path))
{
System.IO.FileStream f = System.IO.File.Create(Path);
f.Close();
}
System.IO.StreamWriter f2 = new System.IO.StreamWriter(Path, true, System.Text.Encoding.GetEncoding("gb2312"));
f2.WriteLine(Strings);
f2.Close();
f2.Dispose();
}
#endregion





添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.