asp.net StreamReader 创建文件的实例代码_实用技巧

复制代码 代码如下:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Text;
using System.IO;
namespace new_app
{
 /// <summary>
 /// myxml 的摘要说明。
 /// </summary>
 public class myxml : System.Web.UI.Page
 {
  private const string FILE_NAME = "d:\MyFile.txt";
  private void Page_Load(object sender, System.EventArgs e)
  {
   // 在此处放置用户代码以初始化页面   
   write_file(FILE_NAME);
   }
//一个创建文件的方法、并在文件里输入内容
  public void write_file(string FILE_NAME)
  {
   if (File.Exists(FILE_NAME))
   {
    Console.WriteLine("{0} already exists.", FILE_NAME);
    return;
   }
   StreamWriter sr = File.CreateText(FILE_NAME);
   sr.WriteLine ("这是我的第一个程序.");
   sr.WriteLine ("by zixian2005");
   sr.Close();
  }
  #region Web 窗体设计器生成的代码
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);
  }
  #endregion
 }
}

时间: 2024-12-03 12:31:43

asp.net StreamReader 创建文件的实例代码_实用技巧的相关文章

asp.net StreamReader 创建文件的实例代码

这篇文章介绍了asp.net StreamReader 创建文件的实例代码,有需要的朋友可以参考一下   复制代码 代码如下: using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using

asp.net中文件下载功能的实例代码_实用技巧

复制代码 代码如下: //TransmitFile实现下载protected void Button1_Click(object sender, EventArgs e){ Response.ContentType = "application/x-zip-compressed";Response.AddHeader("Content-Disposition", "attachment;filename=z.zip");string filena

.net中下载文件的实例代码_实用技巧

一.//TransmitFile实现下载 复制代码 代码如下: protected void Button_Click(object sender, EventArgs e)    {        /*         微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite         下载超过400mb的文件时导致Aspnet_wp.exe进程回收而无法成功下载的问题.         代码如下:         */   

asp.net读取磁盘文件、删除实例代码_实用技巧

复制代码 代码如下:     protected void ReadFile()     //读取文件夹,文件     {         string savePath = @"common";         StringBuilder outstring = new StringBuilder();         string absSavePath = Server.MapPath(savePath);         string[] Directorys = Direct

asp.net 获取图片高度和宽度实例代码_实用技巧

复制代码 代码如下: string path = Server.MapPath("img/1.gif"); System.Drawing.Image image = System.Drawing.Image.FromFile(path); Response.Write("宽:" + image.Width + "<br />"); Response.Write("高:" + image.Height );

Asp.Net获取网站截图的实例代码_实用技巧

复制代码 代码如下: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication1{    public partial class Form1 : Form    {    

VB.NET拷贝整个目录下所有子目录及文件的实例代码_实用技巧

复制代码 代码如下:  Public Sub CopyDerictory(ByVal DirectorySrc As DirectoryInfo, ByVal DirectoryDes As DirectoryInfo)        Dim strDirectoryDesPath As String = DirectoryDes.FullName & "" & DirectorySrc.Name         If Not Directory.Exists(strD

asp.net repeater手写分页实例代码_实用技巧

复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using BLL; using Model; using System.Data.SqlClient; using System.Data; public partial class Test_Re

Asp.Net模拟表单提交数据和上传文件的实现代码_实用技巧

如果你需要跨域上传内容到另外一个域名并且需要获取返回值,使用Asp.Net的作为代理是最好的办法,要是客户端直接提交到iframe中,由于跨域是无法用javascript获取到iframe中返回的内容的.此时需要在自己的网站做一个动态页作为代理,将表单提交到动态页,动态页负责将表单的内容使用WebClient或HttpWebRequest将表单数据再上传到远程服务器,由于在服务器端进行操作,就不存在跨域问题了. WebClient上传只包含键值对的文本信息示例代码: 复制代码 代码如下: str