비동기 호출 mxsml2.xmlhttp > 기술자료 | 해피정닷컴

비동기 호출 mxsml2.xmlhttp > 기술자료

본문 바로가기

사이트 내 전체검색

비동기 호출 mxsml2.xmlhttp > 기술자료

ClassicASP 비동기 호출 mxsml2.xmlhttp

페이지 정보


본문

비동기 호출 

1. http://from.happyjung.com/form.html 에서 내용 입력
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>비동기호출</title>
</head>

<body>
<form name="hpwrite" action="from.asp" method="post">
<input type="text" name="fname" value="해피정닷컴" /><br />
<input type="text" name="email" value="메일@해피정닷컴" /><br />
<input type="text" name="tel" value="070-7600-3500" /><br />
<input type="submit" name="submit"  value="전송" />
</form>
</body>
</html>

 
2. http://from.happyjung.com/from.asp  비동기 호출할 페이지에 코드 삽입
<%
function GetFileFrom(sURL, sSavepath)
  on error resume next
  dim oHTTP, oStream
    
  Const adTypeBinary = 1
  Const adSaveCreateOverWrite = 2
 
  set oHTTP = Server.CreateObject("Microsoft.XMLHTTP")
  oHTTP.open "GET", sURL, False
  oHTTP.send
 
  set oStream = Server.Createobject("ADODB.Stream")
  oStream.type = adTypeBinary
  oStream.open
  oStream.write oHTTP.responseBody
  oStream.savetofile sSavepath, adSaveCreateOverWrite
 
  set oStream = nothing
  set oHTTP = nothing
 
  if err.number <> 0 then
      GetFileFrom = false
  else
      GetFileFrom = true
  end if
end function

dim fname, email, tel
fname = Request.QueryString("fname")
email = Request.QueryString("email")
tel = Request.QueryString("tel")
    
set oXmlhttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
oXmlhttp.open "POST", "http://to.happyjung.com/to.asp", false
oXmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
oXmlhttp.send "fname=" + fname + "&email=" + email + "&tel=" + tel
 
sResponse = oXmlhttp.responseText
set oXmlhttp = nothing  
%>
 
 
3. 전송받는 URL의 페이지( http://to.happyjung.com/to.asp )에서 확인
<%
response.write "fname = "& request("fname") &"<br />"
response.write "email = "& request("email") &"<br />"
response.write "tel = "& request("tel") &"<br />"
%>
 

댓글목록

등록된 댓글이 없습니다.


Total 198건 4 페이지
  • RSS
기술자료 목록
138
ClassicASP   17805  2012-06-11 12:09 ~ 2012-06-11 00:00  
137
ClassicASP   13617  2012-06-11 06:55  
136
ClassicASP   13365  2012-05-30 19:50  
135
ClassicASP   24256  2012-05-21 20:28  
134
ClassicASP   18668  2012-05-18 17:28  
열람
ClassicASP   19678  2012-05-18 14:28 ~ 2012-05-25 00:00  
132
ClassicASP   20108  2012-04-27 02:31  
131
ClassicASP   53578  2012-04-24 17:51 ~ 2013-05-12 00:00  
130
ClassicASP   15188  2012-04-19 02:17  
129
ClassicASP   15251  2012-04-18 13:41 ~ 2016-03-30 00:00  
128
ClassicASP   29087  2012-04-17 22:22 ~ 2018-07-10 13:40  
127
ClassicASP   13848  2012-04-17 13:55  
126
ClassicASP   20873  2012-04-02 09:26  
125
ClassicASP   15150  2012-04-01 17:00  
124
ClassicASP   15935  2012-04-01 09:14 ~ 2012-04-01 00:00  
123
ClassicASP   19916  2012-03-27 13:14  
122
ClassicASP   26483  2012-03-26 20:16  
121
ClassicASP   14850  2012-03-24 01:04 ~ 2012-07-30 00:00  
120
ClassicASP   12185  2012-03-23 23:12  
119
ClassicASP   15926  2012-03-23 21:03 ~ 2013-11-06 00:00  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.