程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 無組件上傳圖片至SQLSERVER數據庫(示例)

無組件上傳圖片至SQLSERVER數據庫(示例)

編輯:關於SqlServer

在無組件上傳我剛試成功,所以提供代碼給大家一起共享。

/* 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>

<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>



<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>
<tr>
<td height="14" class="textBlack" valign="top">
<div align="right">圖片:</div>
</td>
<td height="14" class="textBlack">
<div align="left">
<input type="file" name="file" size="35" class="textarea">
</div>
</td>
</tr>
<tr>
<td height="42" class="textBlack" valign="top">&nbsp;</td>
<td height="42" class="textBlack" valign="middle">
<p>1、您上傳的圖片大小請控制在<font color="#FF0000"><b>500K</b></font>以內,否則不允許上傳<br>
2、你上傳的圖片必須為<font color="#FF0000"><b>150*130象素</b></font><br>
3、上傳上傳圖片的格式為JPG或者GIF</p>
</td>
</tr>
<tr>
<td height="39" class="textBlack">&nbsp;</td>
<td height="39" valign="middle">
<div align="center"><img src=../../"../images/save.gif" width="85" height="19" onClick="if(isOK(form1)){form1.submit()}">  
<img src=../../"../images/close.gif" width="85" height="19" onClick="self.close();" ></div>
</td>
</tr>
</table>
</form>
</body>
</Html>
*************************************************************************


/* transact1.ASP*/
<!--#include file="../func/conn.inc"-->
<!--#include file="../func/fupload.inc"-->
<!--#include file ="../func/myfunctions.inc"-->
<%
If Request.ServerVariables("REQUEST_METHOD") = "POST" Then
Dim FIElds
Dim strTitle,strSort,strContent
Dim rs,sSql
Dim iMaxid
Dim strMaxid
Dim strlen

Set FIElds = GetUpload()
strTitle=BinaryToString(FIElds("txtTitle").value)
strSort=BinaryToString(FIElds("txtSort").value)
strContent=BinaryToString(FIElds("txtContent").value)
strSort=split(trim(strSort),"-")

if instr(1,lcase(Fields("file").FileName),".jpg")=0 and instr(1,lcase(FIElds("file").FileName),".gif")=0 then
response.write "<script language='Javascript'>alert('上傳的圖片必須是gif或者jpg格式的圖片')</script>"
response.write "<script language='Javascript'>window.location='addemployee.ASP';</script>"
Response.end
end if

if FIElds("file").Length>500000 then
response.write "<script language='Javascript'>alert('只允許不大於500k的圖片上傳');</script>"
response.write "<script language='Javascript'>window.location='addemployee.ASP';</script>"
response.end
end if

'/*存至數據庫*/
if FIElds("file").FileName<>"" then
Set rs=Server.CreateObject("ADODB.Recordset")
sSql="select * from employee order by id desc"
rs.open sSql,conn,2,2
if not rs.eof then
iMaxid=Clng(rs("id"))+1
strlen=4-len(cstr(iMaxid))
strMaxid=string(strlen,"0") & cstr(i

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved