无组件上传图片至SQLSERVER数据库

2016-01-29 17:46 48 1 收藏

无组件上传图片至SQLSERVER数据库,无组件上传图片至SQLSERVER数据库

【 tulaoshi.com - ASP 】

 

在无组件上传我刚试成功,所以提供代码给大家一起共享。

/*  addemployee.asp   */
<html
<head
<title职工之家</title
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"
<link rel="stylesheet" href="../css/site_css.css" type="text/css"
</head

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/asp/)

<script language="javascript"
<!--
 //选择分类
 ///////////////////////////////////////////////////////////////////////
 function selectsort(txtSubject){
   var returnValue
   returnValue=window.showModalDialog("selMode.htm",null,"center:1;status:0;help:0;resized:0;dialogheight:300px;dialogwidth:206px");
   if (returnValue!="" && returnValue!=null){
      txtSubject.value=returnValue
   }
 }
 ///////////////////////////////////////////////////////////////////////
 //合法性检查
 function isOK(thisForm){
   var strTemp,strValue,strLen,strExName
  if(thisForm.txtTitle.value==""){
      alert("提示:标题不能为空,请正确输入")
   thisForm.txtTitle.focus()
   return false
   }
   if(thisForm.txtSort.value==""){
      alert("提示:请正确选择分类")
   thisForm.txtSort.focus()
   return false
   }
   /*检查图片类型*/
   if(thisForm.file.value!=""){
      strTemp=thisForm.file.value
   strValue=strTemp.toLowerCase()
   strLen=strTemp.length
   strExName=strValue.substring(strLen-4,strLen)
   if (strExName!=".jpg" && strExName!=".gif"){
       alert("请选择jpg或者gif文件!")
    return false
   }
   return true
   }
 }
//--
</script

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/asp/)

<body bgcolor="#FFFFFF" text="#000000" leftmargin="1" topmargin="1"
<form name="form1" method="post" action="transact1.asp" enctype="multipart/form-data"
  <table border="0" cellspacing="0" cellpadding="0"
    <tr
      <td colspan="2" bgcolor="#006699" height="15"&nbsp;</td
    </tr
    <tr
      <td class="textBlack"
        <div align="right"标题:</div
      </td
      <td
        <input type="text" name="txtTitle" size="52" class="textarea"
      </td
    </tr
    <tr
      <td class="textBlack"
        <div align="right"分类:</div
      </td
      <td
        <input type="text" name="txtSort" size="35" class="textarea"
        <input type="button" name="Submit2" class="buttonSkid" onclick="selectsort(txtSort);"
      </td
    </tr
    <tr
      <td class="textBlack" valign="top"
        <div align="right"正文:</div
      </td
      <td
        <textarea name="txtContent" rows="15" cols="50" class="textarea"</textarea
      </td
    </tr
    <t

来源:http://www.tulaoshi.com/n/20160129/1502863.html

延伸阅读
在目前的工作中需要解决复制整个SqlServer数据库的问题,复制的内容包括数据库大纲、数据库中的存储过程、函数、表结构、主外键关系以及表中的所有数据等,也就是说copy版本与原数据库一模一样。经过一段时间的摸索,找到的一个比较简单的解决方案是: (1)在复制数据库之前,先备份该数据库到文件。 (2)依据备份文件创建新的数据库,并Res...
表sysdatabases:保存DBMS中数据库信息 select [name] from [sysdatabases] order by [name] 就能得到该DBMS中的数据库信息 表sysobjects:保存数据库中数据表信息 con.ChangeDatabase(DBName) select [id],[name] from [sysobjects] where [type]='u',con 就能得到该数据库的表...
using System; using System.Data; using System.Data.OleDb; using System.Collections; namespace XLang.VideoOnline.Framework.Database.Access { /// /// Summary description for ACCESS_DataTablesCollection. /// public class DataTablesCollection { private Database.Access.DataTable[] _tables; private int _count; ...
using System; using System.Data; using System.Data.OleDb; using System.Collections; namespace XLang.VideoOnline.Framework.Database.Access { /// /// Summary description for ACCESS_DataViewsCollection. /// public class DataViewsCollection { private Database.Access.DataView[] _views; private int _count; pub...
本文从多个角度来讲解如何在Access数据库上如何上传并且显示上所上传图片。 在动态网站制做过程中,需要上传图片、显示图片,上传的图片要能够保存在数据库中,一般小型网站只支持Access数据库,如何上传图片,将其保存在数据库中并将其显示出来,是数据库+ASP应用技术之一。许多书籍只介绍了SQL数据库的方法,而对Access却很少提及。网上有...

经验教程

595

收藏

41
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部