일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- sql업데이트
- inner join
- jdbc driver
- 자바기초
- VarType
- JavaScript
- 이미지가로길이
- FileSystemObject
- MSSQL보안
- sql순위
- sql랭킹
- 정규식
- 이미지세로길이
- update
- XML
- SPLIT
- ERD
- 인젝션
- join
- array
- asp함수
- 한글입력체크
- wap
- injection
- instr
- xmldom
- javascript 한글입력체크
- VARIABLE
- WML
- tempDB
- Today
- Total
3초기억력
ajax 이미지 업로드 본문
제목 : ajax 이미지 업로드
소스 :
<script src="/jscript/ajaxfileupload.js"></script>
<script>
function imgUpload()
{
$('input:radio[name="basic_pic"]').attr("checked", false);
$("#p_img").html('')
$("#profile_img").val('');
$.ajaxFileUpload
(
{
url:'/member/profile_upload.asp',
secureuri:false,
fileElementId:"thumb",
dataType: 'json',
success: function (data, status)
{
var result = data.msg;
strhtml="<img src='/data/rental/profile/"+result+" ' border='0' width='100px' height='100px' />";
$("#p_img").html(strhtml)
$("#profile_img").val(result);
return;
},
error: function (data, status, e)
{
alert(data.error);
}
}
)
}
</script>
------------------------------
>>member/profile_upload.asp 파일 소스
<!--#include virtual="/_include/config.asp"-->
<!--#include virtual="/_lib/function.File.asp"-->
<%
Call defineUpload
thumb_folder = pathBase&"/rental/profile"
thumb = getUploadItem("thumb")
Ext=getFileExt(thumb,false)
filename=Replace(date(),"-","")&rndomstring(10)&"."&ext
if ext<>lcase("jpeg") and ext<>lcase("jpg") and ext<>lcase("gif") and ext<>lcase("bmp") and ext<>lcase("png") then
response.write "{error:""ext""}"
response.end
end if
Call fileUpload("thumb",thumb_folder , filename, sPath, sFilename, sSize)
if Err.Number <> 0 then '//에러
result = "error"
response.write "{error:""error""}"
else
response.write "{msg:"""&filename&"""}"
end if
function rndomstring(cnt)
Dim str,cntArr,flg,tStr
str=""
Randomize()
for cntArr=1 to cnt
flg=Int(Rnd()*10)
if flg>5 then
tStr=Int(Rnd()*10)
else
tStr=Int(Rnd()*26)
tStr=Chr(asc("a")+tStr)
end if
str = str & tStr
next
rndomstring=str
end Function
%>
내용 :
출처 :
'코딩_jquery' 카테고리의 다른 글
jquery 스마트폰 회전시 제어하는 구문 (0) | 2015.10.05 |
---|---|
반응형 테이블 2번째 - table reflow (0) | 2015.09.16 |
jquery.masonry.min.js (0) | 2015.05.27 |
초를 1초씩 차감하면서, 일/시/분/초 로 보여주기. 여러개의 시간 표현 (0) | 2015.05.26 |
QR CODE, QR 코드 html 에서 보기 (0) | 2015.05.22 |