风雪来临...

用随笔文字抒写程序人生...

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2005年10月30日

摘要: 在使用asp.net将图片上传并存入SqlServer中,然后从SqlServer中读取并显示出来 一,上传并存入SqlServer 数据库结构 create table test { id identity(1,1), FImage image } 相关的存储过程 Create proc UpdateImage ( @UpdateImage Image ) As Inse... 阅读全文
posted @ 2005-10-30 01:26 David.C 阅读(2094) 评论(1) 推荐(0)

摘要: 1,基于windows的安全验证 web.config文件: <configuration> <system.web> <authentication mode="Windows" /> <identity impersonate="true" /> <authorization> <allow roles="BUILT... 阅读全文
posted @ 2005-10-30 01:23 David.C 阅读(1107) 评论(0) 推荐(0)