摘要:
1)、客户端表单的编码类型Enctype 设置为multipart/form-data的MIME格式,提交表单使用Http的post方法,象下面这样: <form id="form1" method="post" enctype="multipart/form-data/form-data" runat="server" > 2)、HttpInputFile控件运行在服务器端,设置runat=... 阅读全文
摘要:
C#追加文件 StreamWriter sw = File.AppendText(Server.MapPath(".")+"\\myText.txt"); sw.WriteLine("追逐理想"); sw.WriteLine("kzlll"); sw.WriteLine(".NET笔记"); sw.Flush(); sw.Close(); C#拷贝文件 string OrignFile,NewFi... 阅读全文