callsfinish.asp
来自「学生档案与成绩管理(1)学生档案管理:记录每个学生的档案信息」· ASP 代码 · 共 28 行
ASP
28 行
<!-- #include file = "../include/asphead.asp" -->
<!-- #include file = "../include/function.asp" -->
<%CheckUser()%>
<link href="../include/main.css" rel="stylesheet" type="text/css">
<HTML>
<head>
</head>
<%
dim WExcel
set WExcel=server.CreateObject("WExcel.Sheet")
dim UniqueID,TimeLength,RecordedFile
UniqueID=Request.QueryString("UniqueID")
if not isnumeric(UniqueID) then
UniqueID=0
end if
TimeLength=Request.QueryString("TimeLength")
if not isnumeric(TimeLength) then
TimeLength=0
end if
RecordedFile=Request.QueryString("RecordedFile")
WExcel.PhoneCallFinished cint(UserID),clng(UniqueID),clng(TimeLength),cstr(RecordedFile)
%>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?