selam arkadaşlar asp den şifre nasıl oluşturabilir

koxp_12
22-05-2012, 18:34   |  #1  
OP Taze Üye
Teşekkür Sayısı: 0
11 mesaj
Kayıt Tarihi:Kayıt: Eyl 2008

selam arkadaşlar asp den şifre nasıl oluşturabilirim???

akifgüven
22-05-2012, 18:38   |  #2  
Taze Üye
Teşekkür Sayısı: 0
6 mesaj
Kayıt Tarihi:Kayıt: May 2012

using ICSharpCode.SharpZipLib.Zip;
using System.IO;
ZipOutputStream zos = null;
protected void Button1_Click(object sender, EventArgs e)
{
  string[] pathCollection = new string[2];
  PathCellction[0] = "c:\\folder1";
  PathCellction[1] = "c:\\folder2";
  StartZip(pathCollection, "filename");
}
protected void StartZip(string[] pathCollection, string strFileName)
{
  MemoryStream ms;
  Response.ContentType = "application/octet-stream";  strFileName = HttpUtility.UrlEncode(strFileName).Replace('+', ' ');
  Response.AddHeader("Content-Disposition", "attachment; filename=" + strFileName + ".zip");
  ms = new MemoryStream();
  zos = new ZipOutputStream(ms);
  addZipEntry(pathCollection);
  ms.Close();
  zos.Finish();
  zos.Close();
  Response.Clear();
  Response.BinaryWrite(ms.ToArray());
  Response.End();
}
protected void addZipEntry(string[] pathCollection)
{
  for (int i = 0; i < pathCollection.Length; i++)
  {
    string strPath = pathCollection;
    addZipEntry(strPath, strPath.LastIndexOf("\\") + 1);
  }
}
protected void addZipEntry(string strPath, int baseIndex)
{
  DirectoryInfo di = new DirectoryInfo(strPath);
  foreach (DirectoryInfo item in di.GetDirectories())
  {
    addZipEntry(item.FullName, baseIndex);
  }
  foreach (FileInfo item in di.GetFiles())
  {
    FileStream fs = File.OpenRead(item.FullName);
    byte[] buffer = new byte[fs.Length];
    fs.Read(buffer, 0, buffer.Length);
    string strEntryName = item.FullName.Remove(0, baseIndex);
    ZipEntry entry = new ZipEntry(strEntryName);
    zos.PutNextEntry(entry);

kazim-simsek
01-04-2016, 15:46   |  #3  
kazim-simsek avatarı
Yeni Üye
Teşekkür Sayısı: 0
34 mesaj
Kayıt Tarihi:Kayıt: Mar 2016

Emeğine Sağlık
http://www.kazimsimsek.net

kazim-simsek
01-04-2016, 15:46   |  #4  
kazim-simsek avatarı
Yeni Üye
Teşekkür Sayısı: 0
34 mesaj
Kayıt Tarihi:Kayıt: Mar 2016

Emeğine Sağlık
http://www.kazimsimsek.net