search
HomeBackend DevelopmentC#.Net TutorialA side menu bar written in ASP

A side menu bar written in ASPThe code is as follows

<% 
class menus
Public Title, ID, Image, TitleColor, Target, Background, HeadImage, Height, Width, Bgcolor, Style
Private menuItem, menuStr
Private Sub Class_Initialize
 Title = ""
 ID = ""
 menuItem = ""
 Image=""
 TitleColor = "#000000"
 Target = "_blank"
 Background = ""
 HeadImage = ""
 Height = "20"
 Width = "100%"
 Bgcolor = ""
 Style = ""
 script
End Sub
Private Sub Class_Terminate
 Title  = ""
 ID = ""
 menuItem = ""
End Sub
Public Function AddItem(Byval nItem, Byval nURL)
 menuItem = menuItem & "<tr><td style=&#39;font-size:12px;&#39; align=&#39;left&#39;>    {$Image}<a href=&#39;" & nURL & "&#39; target=&#39;"&Target&"&#39; class=&#39;"& Style &"&#39;>" & nItem & "</a></td></tr>"
End Function
Public Sub Show()
 menuStr = "<table border=0 width=&#39;"& Width &"&#39; style=&#39;border:1px solid #999999;&#39; bgcolor=&#39;"& Bgcolor &"&#39;><tr><td height=&#39;"& Height &"&#39; Onclick=menus(&#39;" & ID & "&#39;) bgcolor=&#39;"& Bgcolor &"&#39; valign=&#39;bottom&#39; style=&#39;" & _
 "font-size:12px;color:"&TitleColor&";cursor: hand;&#39; background=&#39;"&Background&"&#39; align=&#39;left&#39;>  {$HeadImage}" & Title & "</td></tr></table><p id=" & chr(34) & ID & chr(34) & " style=" &chr(34) & _
 "display:none;"& chr(34) & "><table width=100% border=0 style=&#39;border-left:1px solid #999999;border-right:1px solid #999999;border-bottom:1px solid #999999;&#39;>" & menuItem & "</table></p>"
 if Image<>"" then
 menuStr = replace(menuStr, "{$Image}", Image)
 else
 menuStr = replace(menuStr, "{$Image}", "")
 end if
 if HeadImage<>"" then
 menuStr = replace(menuStr, "{$HeadImage}", HeadImage)
 else
 menuStr = replace(menuStr, "{$HeadImage}", "")
 end if
 Response.Write menuStr
End Sub
Private Function script()
 Dim JScript
 JScript = "<script language="&chr(34)&"JavaScript"&chr(34)&"type="&chr(34)&"text/JavaScript"&chr(34)& _
">"&vbcrlf&"<!--"&vbcrlf&"function menus(str){"&vbcrlf&"var obj;if (document.getElementById(str)){"&vbcrlf& _
"obj=document.getElementById(str);"& _
"if (obj.style.display =="&chr(34)&"none"&chr(34)&"){obj.style.display ="&chr(34)&chr(34)& _
";}else{obj.style.display ="&chr(34)&"none"&chr(34)&";}}}//--></script>"
 response.Write JScript
End Function
Public Sub AddNew()
 Title  = ""
 ID = ""
 menuItem = ""
 menuStr = ""
End Sub
Public Sub OpenItem(Byval ItemID)
End Sub
end class
%>

A side menu bar written in ASP
A side menu bar written in ASP##Usage method:


<%
Dim NewMenus
Set NewMenus = new menus
NewMenus.Target = "" &#39;打开方式
NewMenus.Bgcolor = "#336699" &#39;主标签背景色
NewMenus.TitleColor = "#FFFFFF" &#39;主标签字体颜色
NewMenus.Height = "10px" &#39;高度
NewMenus.Style ="a1" &#39;子标签样式
NewMenus.Width = "100%" &#39;菜单宽度
NewMenus.AddNew
NewMenus.Title = "门户网站"
NewMenus.ID = "menu1"
NewMenus.AddItem "网易", "http://www.163.com"
NewMenus.AddItem "搜狐", "http://www.sohu.com"
NewMenus.Show
NewMenus.AddNew
NewMenus.Title = "个人网站"
NewMenus.ID = "menu2"
NewMenus.AddItem "IEBSoft studio", "http://iebsoft.512j.com"
NewMenus.AddItem "租用的空间", "http://107814.hxidc.com"
NewMenus.Show
NewMenus.AddNew
NewMenus.Title = "网站新闻管理"
NewMenus.ID = "menu3"
NewMenus.AddItem "新闻列表", "#"
NewMenus.AddItem "图片新闻", "#"
NewMenus.AddItem "新闻管理", "#"
NewMenus.Show
Set NewMenus = Nothing
%>

A side menu bar written in ASP

The above is the detailed content of A side menu bar written in ASP. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Unity game development: C# implements 3D physics engine and AI behavior treeUnity game development: C# implements 3D physics engine and AI behavior treeMay 16, 2025 pm 02:09 PM

In Unity, 3D physics engines and AI behavior trees can be implemented through C#. 1. Use the Rigidbody component and AddForce method to create a scrolling ball. 2. Through behavior tree nodes such as Patrol and ChasePlayer, AI characters can be designed to patrol and chase players.

What does u mean in c language? Unsigned modification of u in c languageWhat does u mean in c language? Unsigned modification of u in c languageMay 16, 2025 pm 02:06 PM

u is used in C language to declare unsigned integer constants. 1. The u suffix represents an unsigned integer, such as 10u. 2. The range of unsigned integers starts from 0 and does not contain negative numbers. They are suitable for large-range positive numbers and bit operations. 3. Pay attention to overflow and negative number processing issues when using unsigned integers.

What does /0 mean in C language? Empty character /0 ending in stringWhat does /0 mean in C language? Empty character /0 ending in stringMay 16, 2025 pm 02:03 PM

In C language, /0 refers to an empty character, which is used to mark the end of a string. 1) The value of the null character in the ASCII code table is 0. 2) It is the basis for C string processing, and the compiler will automatically add null characters at the end of the string. 3) The empty character is not visible but exists in memory, telling the string function to end the string. 4) When using it, make sure that the string ends with empty characters to avoid undefined behavior.

What does bool represent in c language? What is the true and false value of bool type in c language?What does bool represent in c language? What is the true and false value of bool type in c language?May 16, 2025 pm 02:00 PM

In C language, the bool type is introduced through header files to represent true and false values. 1. The value of type bool can be true (1) or false (0), and any non-zero value is considered true. 2. Using bool types can improve the readability of the code, especially when dealing with complex logical conditions. 3. Although bool types are convenient, in some cases, using integer types for boolean operations may be more efficient.

How to calculate exponential function in C language to the x power of e in C languageHow to calculate exponential function in C language to the x power of e in C languageMay 16, 2025 pm 01:57 PM

In C language, you can use the Taylor series method and the exp function in the standard library to calculate the x power of e. 1. The Taylor series method is calculated through approximately, which is suitable for situations where the accuracy requirements are not high, but may overflow when large numbers are large. 2. The exp function method uses the math.h header file, with high accuracy and good optimization, but requires linking to the math library. The selection method needs to be based on specific needs.

What does avg mean in c language abbreviation of avg mean in c languageWhat does avg mean in c language abbreviation of avg mean in c languageMay 16, 2025 pm 01:54 PM

In C language, avg usually means "average", which is a common variable name for calculating the average value of a set of numbers. 1. Declare variables: use avg to store the average value. 2. Accumulation and calculation: traverse the dataset and accumulate all values, and then divide by the dataset length. 3. Result storage: Save the average value into the avg variable. Use double or float types to improve calculation accuracy.

What does aa mean in c language aa variable naming rules in c languageWhat does aa mean in c language aa variable naming rules in c languageMay 16, 2025 pm 01:51 PM

"aa" has no special meaning in C language, it is just a normal identifier. 1. Variable name rules: Only include letters, numbers and underscores, starting with letters or underscores, not keywords, and are case-sensitive. 2. Best practice: Use meaningful names, avoid being too long, use camels or underscore nomenclature to avoid confusing names.

What does f mean in C language? Detailed explanation of the meaning and common usage of f in C languageWhat does f mean in C language? Detailed explanation of the meaning and common usage of f in C languageMay 16, 2025 pm 01:48 PM

In C language, f represents floating point numbers, and the specific usage includes: 1. As a format specifier, used for printf and scanf functions; 2. Appear in mathematical function names, such as sinf and cosf; 3. As a floating point suffix, specify the type float; 4. Pay attention to accuracy issues in floating point operations and use tolerance for comparison; 5. Use float to optimize performance, but trade-offs are required.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.