List_Save.asp
资源名称:NetPhone.rar [点击查看]
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:2k
源码类别:
IP电话/视频会议
开发平台:
ASP/ASPX
- <!--#include file="../../inc/conn.asp"-->
- <!--#include file="../../inc/FUNC.asp" -->
- <!--#include file="../../inc/upload_5xsoft.inc" -->
- <%
- '-----------------------------
- Dim rs
- Dim sql
- '-----------------------------
- DIM UPLOAD
- SET UPLOAD=NEW UPLOAD_5XSOFT
- If UPLOAD.FORM("operation")="add" Then
- call Add
- elseif UPLOAD.FORM("operation")="edit" Then
- call Edit
- ELSE
- call showerr("系统提示:操作无效!")
- end if
- '-----------------------------
- Function Add
- if UPLOAD.FORM("title")="" then
- call showerr("系统提示:标题不能为空!")
- end if
- set rs=server.createobject("adodb.recordset")
- rs.open "select * from Info2",conn,1,3
- rs.addnew
- rs("title")=UPLOAD.FORM("title")
- rs("wz")=UPLOAD.FORM("wz")
- rs("content")=UPLOAD.FORM("content")
- rs("pic")=UPLOAD.FORM("pic")
- rs("postdate")=DATE()
- rs.Update
- call showmsg("系统提示:信息添加成功!","list.asp")
- End Function
- '-----------------------------
- Function Edit
- if UPLOAD.FORM("title")="" then
- call showerr("系统提示:标题不能为空!")
- end if
- if UPLOAD.FORM("content")="" then
- call showerr("系统提示:内容不能为空!")
- end if
- set rs=server.createobject("adodb.recordset")
- rs.open "select * from Info2 where id="&UPLOAD.FORM("id"),conn,1,3
- rs("title")=UPLOAD.FORM("title")
- rs("wz")=UPLOAD.FORM("wz")
- rs("content")=UPLOAD.FORM("content")
- rs("pic")=UPLOAD.FORM("pic")
- rs("postdate")=DATE()
- rs.Update
- call showmsg("系统提示:信息修改成功!","list.asp")
- End Function
- function GetExtendName(FileName)
- dim ExtName
- ExtName = LCase(FileName)
- ExtName = right(ExtName,3)
- ExtName = right(ExtName,3-Instr(ExtName,"."))
- GetExtendName = ExtName
- end function
- '-----------------------------
- call COCLS
- %>