ASP.net如何在客户端生成文件到指定目录
例如
  服务器用File.Create
 public static void Main() 
    {
        string path = @"c:\temp\MyTest.txt";        // Delete the file if it exists.
        if (File.Exists(path)) 
        {
            File.Delete(path);
        }        // Create the file.
        using (FileStream fs = File.Create(path, 1024)) 
        {
            Byte[] info = new UTF8Encoding(true).GetBytes("This is some text in the file.");
            // Add some information to the file.
            fs.Write(info, 0, info.Length);
        }
    }
这只能在服务器生成文件
我想生成到客户端应该怎么写啊?