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

📄 info_inc.asp

📁 jsp 同学录源码
💻 ASP
字号:
<%
'===================================================================
'= Function    : InfoMenu(intFlag,strClew)
'= Time		   : Created At 2006-7-4
'= Input       : intFlag	: now page mode
'= Description : Show form now menu
'===================================================================
Function InfoMenu(strClew)

	Dim strPutMenu
	Dim strHtmlCode
	Dim arrTmp,strTmp,intSortId

	strPutMenu = ""
	strHtmlCode = ""
	strTmp = ""

	intSortId = Trim(Request("intSortId"))
	If Len(intSortId) = 0 Or Not IsNumeric(intSortId) Then
		intSortId = 0
	End If

	GBL_objPubDB.Clear()
	GBL_objPubDB.AllSQL = "SELECT SORT_NAME,SORT_DESC FROM CLASS_SORT WHERE SORT_ID=" & intSortId
	GBL_objPubDB.SQLRSExecute()

	If GBL_objPubDB.intRsNum > 0 Then

		strPutMenu = "&nbsp;<img src='" & GBL_strHomeURL & "images/new/nl.gif' border=0 align=absmiddle>&nbsp;<a href='" & GBL_strHomeURL & "index.asp' title='回到首页'>首页</a> &gt;&gt;<a title='进入' href='" & GBL_strHomeURL & "info/info_list.asp?intSortId=" & intSortId & "' > " & GBL_objPubDB.objPubRS("SORT_NAME") & "</a>"

		If Trim(strClew) <> "" Then
			strPutMenu = strPutMenu & " &gt;&gt; " & strClew
		End If
	
	End If

	InfoMenu = strPutMenu

End Function
%>

⌨️ 快捷键说明

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