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

📄 linkinsert.asp

📁 一个ASP网站博克程序
💻 ASP
字号:
<% Option Explicit %>
<!-- #Include File = "common/LarrixDBMS.asp" -->

<%
	If Session("Passport") = "" Or Session("Passport") <= 0 Or Session("UsrLevel") <> True Then
		Response.Redirect("../Default.asp")
	End If
%>

<%
	If Trim(Request.Form("label")) = "" Or Trim(Request.Form("value")) = "" Then
		Response.Redirect("LinkExplor.asp")
	End If
%>

<%
	Dim objDBMS
	Set objDBMS = New LarrixDBMS
	objDBMS.Open "SELECT * FROM [Links] WHERE [LinkLAB]='" & Trim(Request.Form("label")) & "'", 3
	If objDBMS.objRSET.BOF And objDBMS.objRSET.EOF Then
		objDBMS.objRSET.AddNew
		objDBMS.objRSET("LinkLAB").Value = Trim(Request.Form("label"))
		objDBMS.objRSET("LinkVAL").Value = Trim(Request.Form("value"))
		objDBMS.objRSET.Update
	End If
	objDBMS.Close
	Set objDBMS = Nothing
	Response.Redirect("LinkExplor.asp")
%>

⌨️ 快捷键说明

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