Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > ASP > ASP Forum > ช่วยด้วยค้าบบ ผมมีปัญหามากๆ T___T Set fs อย่างโคด้ข้างบนเนี้ยอะครับ มันเป็นโคด้อัพโหลด แต่มมันให้อัพได้เฉพาะไฟล์ .GIF เราจะทำยังไงอ่าคับ ให้เวลาคนใส่ไฟล์ Jpg หรือ Gif



 

ช่วยด้วยค้าบบ ผมมีปัญหามากๆ T___T Set fs อย่างโคด้ข้างบนเนี้ยอะครับ มันเป็นโคด้อัพโหลด แต่มมันให้อัพได้เฉพาะไฟล์ .GIF เราจะทำยังไงอ่าคับ ให้เวลาคนใส่ไฟล์ Jpg หรือ Gif

 



Topic : 008288

Guest




Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set uploadfile = fs.CreateTextFile(Server.mappath(pathupload&memberid&"s.gif"))
uploadfile.Write(filevalue)
uploadfile.Close
set uploadfile = Nothing
Set uploadfile = fs.CreateTextFile(Server.mappath(pathupload&memberid&"m.gif"))
uploadfile.Write(filevalue2)
uploadfile.Close
set uploadfile = Nothing
set fs=Nothing


อย่างโคด้ข้างบนเนี้ยอะครับ มันเป็นโคด้อัพโหลด แต่มมันให้อัพได้เฉพาะไฟล์ .GIF
เราจะทำยังไงอ่าคับ ให้เวลาคนใส่ไฟล์ Jpg หรือ Gif มาแล้วมันให้อัพได้เหมือนกัน
เพราะอันนี้ถ้าอัพ Jpg ไปมันก้จะ Save เป็นไฟล์ Gif ช่ายมะคับ ถ้าเราอยากให้มัน
เซฟเป็นไฟล์ Jpg หรือ Gif แล้วแต่คนเลือกไฟล์มา จะทำยังไงหลอครับ

ผมทำเว็บบอรด์อยู่ งานเร่งงมากครับ ยังไงช่ววยด้วยนะคับ


Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 12 พ.ค. 2549 09:24:02 By : BENZ View : 2469 Reply : 2
 

 

No. 1

Guest


มีอยู่ใน กระทู้นี้แหละคับ สามารถอัพได้หมดเกือบทุกไฟล์ PDF ยังได้เลยลองๆหาดูก่อนนะคับ






Date : 13 พ.ค. 2549 23:50:19 By : ยากูซ่า
 


 

No. 2

Guest


โอ้ว แม่จ้าวเอาตามนี้เลยค่ะ
ก่อนอื่นต้องมีตามนี้
เป็นตัวอย่างเอาไปปรับใช้นะคะ
จะสามารถกำหนดขนาดไฟล์ได้ รวมถึงสกุลที่อนุญาติได้
(อันนี้ก๊อปเค้ามานะคะแต่จำไม่ได้แล้วว่าที่ไหน อย่าลบเครดิต เป็นมารยาทที่ดีค่ะ)

ไฟล์ที่ต้องการ
inc_upload.asp
form.asp
addform.asp

โฟลเดอร์สำหรับเก็บไฟล์ที่upload ขึ้นไป
upload (อย่าลืมcmd 777 นะคะ)

สำหรับไฟล์ form.asp จะไม่เขียนรายละเอียดนะคะ คิดว่าน่าจะมีพื้นฐานแล้ว

ต่อไปนี้คือโค้ดของ
inc_upload.asp
-------------------------------------------------------------------------------------------------------------
<%
'-----------------------------------------------------------------------------
'Muli File's upload Created by Bhushan Paranjpe
'-----------------------------------------------------------------------------
Sub BuildUploadRequest(RequestBin)
'Get the boundary
PosBeg = 1
PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(13)))
if PosEnd = 0 then
Response.Write "<b>Form was submitted with no ENCTYPE=""multipart/form-data""</b><br>"
Response.Write "Please correct the form attributes and try again."
Response.End
end if
boundary = MidB(RequestBin,PosBeg,PosEnd-PosBeg)
boundaryPos = InstrB(1,RequestBin,boundary)
'Get all data inside the boundaries
Do until (boundaryPos=InstrB(RequestBin,boundary & getByteString("--")))
'Members variable of objects are put in a dictionary object
Dim UploadControl
Set UploadControl = CreateObject("Scripting.Dictionary")
'Get an object name
Pos = InstrB(BoundaryPos,RequestBin,getByteString("Content-Disposition"))
Pos = InstrB(Pos,RequestBin,getByteString("name="))
PosBeg = Pos+6
PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(34)))
Name = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg))
PosFile = InstrB(BoundaryPos,RequestBin,getByteString("filename="))
PosBound = InstrB(PosEnd,RequestBin,boundary)
'Test if object is of file type
If PosFile<>0 AND (PosFile<PosBound) Then
'Get Filename, content-type and content of file
PosBeg = PosFile + 10
PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(34)))
FileName = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg))
FileName = Mid(FileName,InStrRev(FileName,"\")+1)
'Add filename to dictionary object
UploadControl.Add "FileName", FileName
Pos = InstrB(PosEnd,RequestBin,getByteString("Content-Type:"))
PosBeg = Pos+14
PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(13)))
'Add content-type to dictionary object
ContentType = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg))
UploadControl.Add "ContentType",ContentType
'Get content of object
PosBeg = PosEnd+4
PosEnd = InstrB(PosBeg,RequestBin,boundary)-2
Value = FileName
ValueBeg = PosBeg-1
ValueLen = PosEnd-Posbeg
Else
'Get content of object
Pos = InstrB(Pos,RequestBin,getByteString(chr(13)))
PosBeg = Pos+4
PosEnd = InstrB(PosBeg,RequestBin,boundary)-2
Value = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg))
ValueBeg = 0
ValueEnd = 0
End If
'Add content to dictionary object
UploadControl.Add "Value" , Value
UploadControl.Add "ValueBeg" , ValueBeg
UploadControl.Add "ValueLen" , ValueLen
'Add dictionary object to main dictionary
UploadRequest.Add name, UploadControl
'Loop to next object
BoundaryPos=InstrB(BoundaryPos+LenB(boundary),RequestBin,boundary)
Loop
End Sub

'String to byte string conversion
Function getByteString(StringStr)
For i = 1 to Len(StringStr)
char = Mid(StringStr,i,1)
getByteString = getByteString & chrB(AscB(char))
Next
End Function

'Byte string to string conversion
Function getString(StringBin)
getString =""
For intCount = 1 to LenB(StringBin)
getString = getString & chr(AscB(MidB(StringBin,intCount,1)))
Next
End Function

Function UploadFormRequest(name)
on error resume next
if UploadRequest.Item(name) then
UploadFormRequest = UploadRequest.Item(name).Item("Value")
end if
End Function
%>

----------------------------------------------------------------------------------------------------------


ต่อไปนี้คือโค้ดของไฟล์
addform.asp
---------------------------------------------------------------------------------------------------------
<%@LANGUAGE="VBSCRIPT" CODEPAGE="874"%>
<title>ส่งใบสมัครแก๊งหางฟู</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">

<!-- #include file="inc_upload.asp" -->
<%

RequestBin = Request.BinaryRead(Request.TotalBytes)

Dim UploadRequest
Set UploadRequest = CreateObject("Scripting.Dictionary")

BuildUploadRequest RequestBin
'------
'Validate required form input
'Dim strErr
strErr = ""
'if UploadFormRequest("message") = "" then strErr = strErr & "กรุณาป้อนข้อความของท่าน" & "<p>" & "กดปุ่ม Back เพื่อป้อนใหม่อีกครั้ง"
'if strErr <> "" then
'Response.Write strErr
'Response.End
'end if
'------

AF_keys = UploadRequest.Keys

'Declare array variable to store file names and check allowed file extensions
Dim imgFileName(), imgMaxFileSize
Redim imgFileName(UploadRequest.Count)

'Max 30 Kb Image File Size
imgMaxFileSize = 40 * 1024

for AF_i = 0 to UploadRequest.Count - 1
AF_curKey = AF_keys(AF_i)
if UploadRequest.Item(AF_curKey).Item("FileName") <> "" then
AF_valueLen = UploadRequest.Item(AF_curKey).Item("ValueLen")
select case Right(UploadRequest.Item(AF_curKey).Item("FileName"), 3)
'Allow these file extensions to be uploaded
case "gif", "jpg", "png", "GIF", "JPG", "PNG"
'Warning if file size is 0 byte
if AF_valueLen = 0 then
Response.Write "<B>An error has occured saving uploaded file!</B><br><br>"
Response.Write "Filename: " & Trim(AF_curPath) & UploadRequest.Item(AF_curKey).Item("FileName") & "<br>"
Response.Write "File does not exists or is empty.<br>"
Response.Write "Please correct and <A HREF=""javascript:history.back(1)"">try again</a>"
Response.End
end if
'Warning if file size is more than max one
if AF_valueLen > imgMaxFileSize then
Response.Write "<B>An error has occured saving uploaded file!</B><br><br>"
Response.Write "Filename: " & Trim(AF_curPath) & UploadRequest.Item(AF_curKey).Item("FileName") & "<br>"
Response.Write "File size (" & FormatNumber(AF_valueLen,0) & " Bytes) is more than max file size (" & FormatNumber(imgMaxFileSize,0) & " Bytes).<br>"
Response.Write "Please correct and <A HREF=""javascript:history.back(1)"">try again</a>"
Response.End
end if
case else
Response.Write "<B>An error has occured saving uploaded file!</B><br><br>"
Response.Write "Filename: " & Trim(AF_curPath) & UploadRequest.Item(AF_curKey).Item("FileName") & "<br>"
Response.Write "File extensions should only be ""gif, jpg, png"".<br>"
Response.Write "Please correct and <A HREF=""javascript:history.back(1)"">try again</a>"
Response.End
end select
' else
'Warning if file is blank
' Response.Write "<B>An error has occured saving uploaded file!</B><br><br>"
' Response.Write "Filename: " & Trim(AF_curPath) & UploadRequest.Item(AF_curKey).Item("FileName") & "<br>"
' Response.Write "File does not exists or is empty.<br>"
' Response.Write "Please correct and <A HREF=""javascript:history.back(1)"">try again</a>"
' Response.End
end if
next

'------
Dim numFileName
'Assign initial file number
numFileName = 1

for AF_i = 0 to UploadRequest.Count - 1
AF_curKey = AF_keys(AF_i)
'Save all uploaded files
if UploadRequest.Item(AF_curKey).Item("FileName") <> "" then
AF_value = UploadRequest.Item(AF_curKey).Item("Value")
AF_valueBeg = UploadRequest.Item(AF_curKey).Item("ValueBeg")
AF_valueLen = UploadRequest.Item(AF_curKey).Item("ValueLen")

'Create a Stream instance
Dim AF_strm1, AF_strm2
Set AF_strm1 = Server.CreateObject("ADODB.Stream")
Set AF_strm2 = Server.CreateObject("ADODB.Stream")

'Open the stream
AF_strm1.Open
AF_strm1.Type = 1 'Binary
AF_strm2.Open
AF_strm2.Type = 1 'Binary

AF_strm1.Write RequestBin
AF_strm1.Position = AF_ValueBeg
AF_strm1.CopyTo AF_strm2,AF_ValueLen

'Create and Write to a File
AF_curPath = Request.ServerVariables("PATH_INFO")
AF_curPath = Trim(Mid(AF_curPath,1,InStrRev(AF_curPath,"/")) & "")
if Mid(AF_curPath,Len(AF_curPath),1) <> "/" then
AF_curPath = AF_curPath & "/"
end if

on error resume next
'------
'Declare variable to store folder name and save to file and store file names To array variables
Dim imgFolderName, numFile
imgFolderName = "\upload\"
'Assign file name number as yyyymdhms + running number
numFile = Year(Now) & Month(Now) & Day(Now) & Hour(Now) & Minute(Now) & Second(Now) & numFileName & Right(LCase(UploadRequest.Item(AF_curKey).Item("FileName")),4)

AF_strm2.SaveToFile Trim(Server.mappath(AF_curPath)) & imgFolderName & numFile,2
imgFileName(AF_i) = numFile

numFileName = numFileName + 1

' AF_strm2.SaveToFile Trim(Server.mappath(AF_curPath)) & imgFolderName & LCase(UploadRequest.Item(AF_curKey).Item("FileName")),2
' imgFileName(AF_i) = LCase(UploadRequest.Item(AF_curKey).Item("FileName"))
'------

if err then
Response.Write "<B>An error has occured saving uploaded file!</B><br><br>"
Response.Write "Filename: " & Trim(AF_curPath) & UploadRequest.Item(AF_curKey).Item("FileName") & "<br>"
Response.Write "Maybe the destination directory does not exist, or you don't have write permission.<br>"
Response.Write "Please correct and <A HREF=""javascript:history.back(1)"">try again</a>"
err.clear
Response.End
end if
end if
next

'------
'Display file names to browser or Save to file names to your database
Dim sFileName(1), i
for AF_i = 0 to UploadRequest.Count - 1
If imgFileName(AF_i) <> "" Then
'Assign file name to array variables, 1 is Max number of file upload that you can change
for i = 0 to 1
If sFileName(i) = "" Then
sFileName(i) = imgFileName(AF_i)
exit for
End If
next
End If
next

'------
'การเรียกข้อมูลที่ต้องการเช่นเนื้อหาของกระทู้ที่จะตั้ง
message=Trim(UploadFormRequest("message"))

set conn = Server.CreateObject("ADODB.Connection")
conn.Open "Driver={Microsoft Access Driver (*.mdb)}; dbq="&server.mappath("ชื่อดาต้าเบส.mdb")

Sql="Select * from ชื่อตาราง "
Set RS =Server.CreateObject("ADODB.Recordset")
RS.open Sql,Conn,1,3

RS.AddNew
.......................................
RS.Update
rs.Close
%></div>
<link href="../style2.css" rel="stylesheet" type="text/css">
<font size="2">ได้บันทึกขอมูลแล้ว กรุณารอสักครู่</font>
-----------------------------------------------------------------------------------------------------------

ลองดูนะคะ โชคดีค่ะ


Date : 17 พ.ค. 2549 15:55:18 By : fray
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยด้วยค้าบบ ผมมีปัญหามากๆ T___T Set fs อย่างโคด้ข้างบนเนี้ยอะครับ มันเป็นโคด้อัพโหลด แต่มมันให้อัพได้เฉพาะไฟล์ .GIF เราจะทำยังไงอ่าคับ ให้เวลาคนใส่ไฟล์ Jpg หรือ Gif
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่