asp.net关于文件在数据库的存入和读取
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-21
= ""; 61 int nAreaID = 0; 62 String strDept = ""; 63 strClientFileIndex = ""; 64 SqlConnection connClient; 65 66 String strSQL = "Select * From Area Where AreaCode=''" + strTmpServer + "''"; 67 SqlCommand cmd = new SqlCommand(strSQL, conn); 68 cmd.Connection.Open(); 69 using (SqlDataReader sdr = cmd.ExecuteReader()) 70 { 71 if (sdr.Read()) 72 { 73 strConnectString = sdr["ConnectString"].ToString(); 74 strAreaName = sdr["AreaName"].ToString(); 75 nAreaID = Convert.ToInt16(sdr["ID"]); 76 } 77 } 78 cmd.Connection.Close(); 79 80 strSQL = "Select * From MemberList Where UserName=''" + strTmpUserName + "'' And AreaID=" + nAreaID; 81 cmd = new SqlCommand(strSQL, conn); 82 cmd.Connection.Open(); 83 using (SqlDataReader sdr = cmd.ExecuteReader()) 84 { 85 if (sdr.Read()) 86 { 87 strDept = sdr["Dept"].ToString(); 88 } 89 } 90 cmd.Connection.Close(); 91 92 connClient = new SqlConnection(strConnectString); 93 94 for (int intCount = 0; intCount < files.Count; intCount++) 95 { 96 postedFile = files[intCount]; 97 98 if (postedFile.ContentLength > 0) 99 { 100 String strOldFilePath = postedFile.FileName; 101 String strFileName = strOldFilePath.Substring(strOldFilePath.LastIndexOf("\\") + 1); 102 103 //貧勧猟周欺捲暦匂 104 //File1.PostedFile.SaveAs("c:\\Test\\" + DateTime.Now.ToString("yyyyMMddhhmmss") + strExtension); 105 106 //喘噐隠贋猟周寄弌 107 int intDocLen; 108 //Stream喘噐響函貧勧方象 109 Stream objStream; 110 String strDocExt; 111 //貧勧猟周醤悶坪否 112 intDocLen = postedFile.ContentLength; 113 strDocExt = strOldFilePath.Substring(strOldFilePath.LastIndexOf(".") + 1); 114 115 byte[] Docbuffer = new byte[intDocLen]; 116 objStream = postedFile.InputStream; 117 118 119 //猟周隠贋欺産贋 120 121 //産贋繍隠贋欺方象垂 122 objStream.Read(Docbuffer, 0, intDocLen); 123 124 string fileType = postedFile.ContentType; 125 126 127 //峇佩捲暦匂極贋刈狛殻Send_Group_Email 128 if (!bDone) 129 { 130 cmd = new SqlCommand("Send_Group_Email", conn); 131 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: asp.net2统一搜索引擎关键字编码下一篇: ASP.NET伏撹RSS Feed
关于asp.net关于文件在数据库的存入和读取的所有评论