<!--METADATA TYPE="typelib" FILE="c:\program files\common files\system\ado\msado15.dll"-->
<%
set rs1 = Server.CreateObject("ADODB.COMMAND")
with rs1
.Activeconnection = ObjConn
.CommandText = "ProcedureName"
.CommandType = adCmdStoredProc
.parameters.append .Createparameter ("@task", adChar, adParamInput, 2, "00")
.parameters.append .Createparameter ("@id", adVarChar, adParamInput, 8, id)
.parameters.append .Createparameter ("@title", adVarChar, adParamInput, 250, "")
.parameters.append .Createparameter ("@nick", adVarChar, adParamInput, 20, "")
.parameters.append .Createparameter ("@duedate", adVarChar, adParamInput, 50, "")
.parameters.append .Createparameter ("@pass", adVarChar, adParamInput, 20, "")
Set rs = .execute
End with
If rs.eof And rs.bof Then
'response.write "값이 없습니다."
Else
nick = rs("nick")
name = rs("name")
myemail = rs("email")
End If
rs.close
Set rs = nothing
%>
'프로그래밍 > ASP' 카테고리의 다른 글
ASP - Split, For, UBound 활용하여 다중으로 넘어온 값 분할하기 (0) | 2013.08.20 |
---|---|
ASP - ipad 에서 chrome 으로 페이지 접근시 html 소스가 보이는 오류가 나타날 경우 (0) | 2013.08.20 |
ASP Excel Download Example (0) | 2013.08.20 |
ASP 줄바꿈 예시 (0) | 2013.08.20 |
ASP 개발시 오류메시지 쉽게 볼 수 있게 브라우저 세팅하기 (0) | 2013.08.20 |