摘要: 1.上传图片,即限制上传文件的后缀名为.jpg、.png、.gif等 if (FileUpload1.HasFile == true) { string fileName = FileUpload1.FileName; ... 阅读全文
posted @ 2012-07-03 00:45 liqipeng 阅读(1128) 评论(0) 推荐(0) 编辑
摘要: 搜集起来留着以后用吧①查询结果有两条完全相同的行,用distinctselect distinct * from table(表名) where (条件) ②存在部分字段相同的纪录(但是有有主键id,即唯一键) 如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及gr... 阅读全文
posted @ 2012-07-03 00:27 liqipeng 阅读(232) 评论(0) 推荐(0) 编辑
摘要: select name from syscolumns where id=object_id('表名'); 阅读全文
posted @ 2012-07-03 00:14 liqipeng 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 1.添加表头 ColumnHeader header1 = new ColumnHeader(); header1.Width = 100; //列标头宽 header1.Text = "学号"; //列标头名称 ... 阅读全文
posted @ 2012-07-02 17:46 liqipeng 阅读(675) 评论(0) 推荐(0) 编辑
摘要: 先介绍一下searchPattern通配符通配符描述*零个或多个字符?正好一个字符举例: ①“*t”搜索 path 中所有以字母“t”结尾的名称 ②“s*”搜索 path 中所有以字母“s”开头的名称通配符的行为与其长度有一定的关系,扩展名恰好是三个字符时的 searchPattern 匹配行为... 阅读全文
posted @ 2012-07-02 17:09 liqipeng 阅读(1494) 评论(0) 推荐(0) 编辑
摘要: 功能:FolderBrowserDialog可以以对话框的形式浏览文件夹,获取文件夹的路径。 FolderBrowserDialog fbd = new FolderBrowserDialog(); if (fbd.ShowDialog() == Dial... 阅读全文
posted @ 2012-07-02 16:48 liqipeng 阅读(749) 评论(0) 推荐(0) 编辑
摘要: 1.webBrowser1_DocumentCompleted 注意在网页加载完毕后操作,不可能找不到相关的元素2.取得并解析页面的所有链接,遍历找到目标链接,然后点击 HtmlElementCollection links = this.webBrowser1.Docu... 阅读全文
posted @ 2012-07-02 02:07 liqipeng 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 转载的,但原文出处不知道在哪儿了上面是主界面上面是显示界面数据库为Picture,数据表为Picture,表结构设计如下所示:PictureID int 4, PictureContent Image, PictureText nvarchar(50)下面是主界面的代码namespac... 阅读全文
posted @ 2012-06-30 23:25 liqipeng 阅读(411) 评论(0) 推荐(0) 编辑
摘要: byte[] imageBytes = GetImageBytes(pictureBox1.Image); string connStr = "SQL Server连接字符串"; using (SqlConnection conn ... 阅读全文
posted @ 2012-06-30 23:14 liqipeng 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 图片的“读”操作①参数是图片路径:返回Byte[]类型: //参数是图片的路径 public byte[] GetPictureData(string imagePath) { FileStream fs = new FileStream(imagePath, F... 阅读全文
posted @ 2012-06-30 22:39 liqipeng 阅读(2395) 评论(0) 推荐(0) 编辑