⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 savenewsmod.asp

📁 一个功能很全面占用空间的小商城程序,适合个人网上开店使用
💻 ASP
字号:
<%
if session("admin_name")="" then response.end
%>
<!--#include file="conn.asp"-->
<%
dim sql
       Set cmdTemp = Server.CreateObject("ADODB.Command")
       Set InsertCursor = Server.CreateObject("ADODB.Recordset")
       cmdTemp.CommandText = "SELECT top 1 * FROM news where news_id="&Request("id")
       cmdTemp.CommandType = 1
       Set cmdTemp.ActiveConnection = conn
       InsertCursor.Open cmdTemp, , 1, 3
       InsertCursor("news_title") =Request("title")
       InsertCursor("news_content") =Request("content")
       InsertCursor.Update
'	   response.write InsertCursor("id")
'	   response.End
'	   InsertCursor.movelast
%>
<script language=Javascript>
<!--
alert("修改成功!");
window.location="newsMod.asp?id=<%=Request("id")%>"
-->
</script>
<%
       InsertCursor.close
	   conn.close
       set InsertCursor=nothing
       set conn=nothing
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -