Hejsa
Er der nogen der kan fortælle om det er muligt at vælge bibliotek med asp
på serveren hos sin udbyder, med et lille stump kode.
Her er et lille stump kode, som jeg gerne vil have rettet til:
<%
If Request.ServerVariables("REQUEST_METHOD") = "POST" Then
intFormSize = Request.TotalBytes
If intFormSize > 20000 Then
Response.Write "Du må maksimum uploade 20k i denne demo!"
Response.End
End If
strData = Request.BinaryRead(intFormSize)
bCrLf = ChrB(13) & ChrB(10)
intDivider = LeftB(strData, InStrB(strData, bCrLf) - 1)
intDataStart = InStrB(strData, bCrLf & bCrLf) + 4
intDataEnd = InStrB(intDataStart + 1, strData, intDivider) - intDataStart
Response.ContentType = "image/gif"
Response.BinaryWrite MidB(strData, intDataStart, intDataEnd)
Response.End
End If
%>
<html><head>
<title>Upload uden komponent</title>
</head><body>
<form enctype="multipart/form-data" action="upload.asp" method="POST">
<p>Vælg et billede:<br>
<input name="image" type="file"><br>
<input type="submit" value="Upload" name="Action">
</form>
</body></html>
|