But how could you live and have no story to tell!
访问统计 original graphics

摘要: 1、存入数据库 int DocLen = FileUpload1.PostedFile.ContentLength; byte[] Docbuffer = new byte[DocLen]; Stream objStream = FileUpload1.PostedFile.InputStream; objStream.Read(D... 阅读全文
posted @ 2008-08-18 16:48 nextsoft 阅读(922) 评论(0) 推荐(0) 编辑
摘要: 有一个Temp1表,其中一列Pic为Image类型,想把这个列中的数据存入另一个表中Temp2中的Pic类型。该怎么做呢?代码如下: SqlConnection myconn = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString); myco... 阅读全文
posted @ 2008-08-18 16:32 nextsoft 阅读(478) 评论(0) 推荐(0) 编辑