%'---------------------------------------------------------------
' AspStudio_Codepage="65001"
' The above line is the mark for code page of soft usage , so DO NOT DELETE IT. More details in Help file.
'
' File name: Test1.asp
' Authorship: ewebxp
' Author email:webmaster@ewebxp.com
' Date created:2005-11-05 15:27:21
' Copyrights(C)Shanghai advance information Co. Ltd.
'--------------------------------------------------------------%>
Test1.asp
<%
'Server.DebugOut "extern asp function"
sUserName=Request("UserName")
sPassword=Request("Password")
sMyData=Request("MyData")
'Server.DebugOut sUserName 'this information will shown in outpout window
Response.Write sMyData 'you can enable/disable to show the Response.Write information at output window.
Response.Write "
"
sMessage=""
bCanDoContinue=false
if sUserName="UserTest1" then
bCanDoContinue=true
sMessage="OK"
else
sMessage="Error"
end if
Response.Write sMessage
%>