master
editor 1 month ago
commit 0663e534bb

@ -0,0 +1,45 @@
ASP.NET2.0实现简易菜单TAB切换
一、源码描述
环境VS2022 
二、功能介绍
使用CSS+SiteMap+UserControl+MasterPage实现简易的Tab 
我们在做网站后台管理的时候往往需要用到Tab形式的导航菜单博客园如此BlogEngine也如此
前段时间研究修改BlogEngine的时候看到其Tab实现如此容易思路不错但是有一点使我郁闷
他的Tab标题是取文件名而使用中文的文件名是写程序的大忌自然就想到了Asp.Net2.0的特性Web.sitemap
我们的数据源如何不从它来,于是简单写了下,其实很简单,只需要一个样式文件,
一个SiteMap,一个通用的UserControl一个母版页。
Module/CpMenu.ascx为导航用户控件
App_Themes为皮肤文件夹
其中Tab的实现方法有很多种比如说用css+div+js也可以实现用户可以根据自己的需求进行选择。
三、注意事项
ctrl+F5运行即可。
作者: Hedonister
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/MasterPageSiteMapTab
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
/*- Menu Tabs --------------------------- */
.tabs .current {
font-weight: bolder;
font-size:13pt;
color: Blue;
border-bottom: solid 1px #F1F1F1;
background: url( "images/tableftB.gif" ) no-repeat left top;
background-position: 0% -42px;
}
.tabs {
float: left;
width: 100%;

@ -0,0 +1,13 @@
using System;
using System.Web.Security;
using System.Web.UI;
namespace Tab.CP
{
public partial class CPMaster : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// CPMaster class.

@ -0,0 +1,6 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Tab.CP.WebForm1" Title="页面一" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一
<a href="http://www.51aspx.com" target="_blank">download from 51aspx.com</a>
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm1 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm1 class.

@ -0,0 +1,4 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="Tab.CP.WebForm2" Title="页面二" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm2 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm2 class.

@ -0,0 +1,4 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="Tab.CP.WebForm3" Title="页面三" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面三
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm3 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm3 class.

@ -0,0 +1,4 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="Tab.CP.WebForm4" Title="页面四" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面四
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm4 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm4 class.

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Tab._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>使用CSS+SiteMap+UserControl+MasterPage实现简易的Tab </title>
</head>
<body>
<form id="form1" runat="server">
<div style="margin-top:30px;">
<a href="CP/WebForm1.aspx">进入演示>></a>
<br /><br /><br /><br /><br />
<a href="http://www.51aspx.com/CV/MasterPageSiteMapTab" target="_blank">download from 51aspx.com</a>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab
{
//<2F><>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>www.51aspx.com(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab {
/// <summary>
/// _Default class.

@ -0,0 +1,2 @@
<%@ Control Language="C#" AutoEventWireup="true" Codebehind="CpMenu.ascx.cs" Inherits="Tab.Module.CpMenu" %>
<ul runat="server" id="ulMenu" />

@ -0,0 +1,15 @@
using System;
using System.IO;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web;
namespace Tab.Module
{
//<2F><>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>www.51aspx.com(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)
/// <summary>
/// <20><><EFBFBD>׵<EFBFBD>Tab Menu
/// </summary>
public partial class CpMenu : UserControl
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// <20>˴<EFBFBD><CBB4><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɡ<EFBFBD>
// <20><><EFBFBD>п<EFBFBD>汾:2.0.50727.42
//
// <20>Դ<EFBFBD><D4B4>ļ<EFBFBD><C4BC>ĸ<EFBFBD><C4B8>Ŀ<EFBFBD><C4BF>ܻᵼ<DCBB>²<EFBFBD><C2B2><EFBFBD>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɴ<EFBFBD><C9B4><EFBFBD><EBA3AC>Щ<EFBFBD><D0A9><EFBFBD>Ľ<EFBFBD><C4BD>ᶪʧ<E1B6AA><CAA7>
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.Module {
/// <summary>
/// CpMenu <20>

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Tab")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("ZHLX")]
[assembly: AssemblyProduct("Tab")]
[assembly: AssemblyCopyright("版权所有 (C) ZHLX 2007")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F324C4F0-B72F-4EB7-B8A6-AE8F29E03512}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Tab</RootNamespace>
<AssemblyName>Tab</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<!--
设置 compilation debug="true" 将调试符号插入
已编译的页面中。但由于这会
影响性能,因此只在开发过程中将此值
设置为 true。
-->
<compilation debug="true" />

@ -0,0 +1 @@
{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240605\\update\\MasterPageSiteMapTab\\Tab","ProjectFileName":"Tab.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"CP\\CP.Master.cs"},{"SourceFile":"CP\\CP.Master.designer.cs"},{"SourceFile":"CP\\WebForm1.aspx.cs"},{"SourceFile":"CP\\WebForm1.aspx.designer.cs"},{"SourceFile":"CP\\WebForm2.aspx.cs"},{"SourceFile":"CP\\WebForm2.aspx.designer.cs"},{"SourceFile":"CP\\WebForm3.aspx.cs"},{"SourceFile":"CP\\WebForm3.aspx.designer.cs"},{"SourceFile":"CP\\WebForm4.aspx.cs"},{"SourceFile":"CP\\WebForm4.aspx.designer.cs"},{"SourceFile":"Default.aspx.cs"},{"SourceFile":"Default.aspx.designer.cs"},{"SourceFile":"Module\\CpMenu.ascx.cs"},{"SourceFile":"Module\\CpMenu.ascx.designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Configuration\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Core\\v4.0_4.0.0.0__b77a5c561934e089\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.Data\\v4.0_4.0.0.0__b77a5c561934e089\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System\\v4.0_4.0.0.0__b77a5c561934e089\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Drawing\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.EnterpriseServices\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.Web\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Web.Mobile\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Web.Mobile.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Web.Services\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Xml\\v4.0_4.0.0.0__b77a5c561934e089\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240605\\update\\MasterPageSiteMapTab\\Tab\\bin\\Tab.dll","OutputItemRelativePath":"Tab.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240605\\update\\MasterPageSiteMapTab\\Tab\\bin\\Tab.pdb","OutputItemRelativePath":"Tab.pdb"}],"CopyToOutputEntries":[]}

@ -0,0 +1,45 @@
ASP.NET2.0实现简易菜单TAB切换
一、源码描述
环境VS2022&nbsp;
二、功能介绍
使用CSS+SiteMap+UserControl+MasterPage实现简易的Tab&nbsp;
我们在做网站后台管理的时候往往需要用到Tab形式的导航菜单博客园如此BlogEngine也如此
前段时间研究修改BlogEngine的时候看到其Tab实现如此容易思路不错但是有一点使我郁闷
他的Tab标题是取文件名而使用中文的文件名是写程序的大忌自然就想到了Asp.Net2.0的特性Web.sitemap
我们的数据源如何不从它来,于是简单写了下,其实很简单,只需要一个样式文件,
一个SiteMap,一个通用的UserControl一个母版页。
Module/CpMenu.ascx为导航用户控件
App_Themes为皮肤文件夹
其中Tab的实现方法有很多种比如说用css+div+js也可以实现用户可以根据自己的需求进行选择。
三、注意事项
ctrl+F5运行即可。
作者: Hedonister
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/MasterPageSiteMapTab
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
/*- Menu Tabs --------------------------- */
.tabs .current {
font-weight: bolder;
font-size:13pt;
color: Blue;
border-bottom: solid 1px #F1F1F1;
background: url( "images/tableftB.gif" ) no-repeat left top;
background-position: 0% -42px;
}
.tabs {
float: left;
width: 100%;

@ -0,0 +1,13 @@
using System;
using System.Web.Security;
using System.Web.UI;
namespace Tab.CP
{
public partial class CPMaster : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// CPMaster class.

@ -0,0 +1,6 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Tab.CP.WebForm1" Title="页面一" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一页面一
<a href="http://www.51aspx.com" target="_blank">download from 51aspx.com</a>
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm1 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm1 class.

@ -0,0 +1,4 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="Tab.CP.WebForm2" Title="页面二" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二页面二
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm2 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm2 class.

@ -0,0 +1,4 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="Tab.CP.WebForm3" Title="页面三" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面三
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm3 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm3 class.

@ -0,0 +1,4 @@
<%@ Page Language="C#" MasterPageFile="~/CP/CP.Master" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="Tab.CP.WebForm4" Title="页面四" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphAdmin" runat="server">
页面四
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab.CP
{
public partial class WebForm4 : System.Web.UI.Page
{

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.CP {
/// <summary>
/// WebForm4 class.

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Tab._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>使用CSS+SiteMap+UserControl+MasterPage实现简易的Tab </title>
</head>
<body>
<form id="form1" runat="server">
<div style="margin-top:30px;">
<a href="CP/WebForm1.aspx">进入演示>></a>
<br /><br /><br /><br /><br />
<a href="http://www.51aspx.com/CV/MasterPageSiteMapTab" target="_blank">download from 51aspx.com</a>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Tab
{
//<2F><>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>www.51aspx.com(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.42
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab {
/// <summary>
/// _Default class.

@ -0,0 +1,2 @@
<%@ Control Language="C#" AutoEventWireup="true" Codebehind="CpMenu.ascx.cs" Inherits="Tab.Module.CpMenu" %>
<ul runat="server" id="ulMenu" />

@ -0,0 +1,15 @@
using System;
using System.IO;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web;
namespace Tab.Module
{
//<2F><>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>www.51aspx.com(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)
/// <summary>
/// <20><><EFBFBD>׵<EFBFBD>Tab Menu
/// </summary>
public partial class CpMenu : UserControl
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// <20>˴<EFBFBD><CBB4><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɡ<EFBFBD>
// <20><><EFBFBD>п<EFBFBD>汾:2.0.50727.42
//
// <20>Դ<EFBFBD><D4B4>ļ<EFBFBD><C4BC>ĸ<EFBFBD><C4B8>Ŀ<EFBFBD><C4BF>ܻᵼ<DCBB>²<EFBFBD><C2B2><EFBFBD>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɴ<EFBFBD><C9B4><EFBFBD><EBA3AC>Щ<EFBFBD><D0A9><EFBFBD>Ľ<EFBFBD><C4BD>ᶪʧ<E1B6AA><CAA7>
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tab.Module {
/// <summary>
/// CpMenu <20>

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Tab")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("ZHLX")]
[assembly: AssemblyProduct("Tab")]
[assembly: AssemblyCopyright("版权所有 (C) ZHLX 2007")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F324C4F0-B72F-4EB7-B8A6-AE8F29E03512}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Tab</RootNamespace>
<AssemblyName>Tab</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<appSettings/>
<connectionStrings/>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.8" />
</system.Web>
-->
<system.web>
<!--
设置 compilation debug="true" 将调试符号插入

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<appSettings/>
<connectionStrings/>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.8" />
</system.Web>
-->
<system.web>
<!--
设置 compilation debug="true" 将调试符号插入

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,7 @@
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\bin\Tab.dll.config
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\bin\Tab.dll
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\bin\Tab.pdb
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\obj\Debug\Tab.csproj.AssemblyReference.cache
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\obj\Debug\Tab.csproj.CoreCompileInputs.cache
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\obj\Debug\Tab.dll
C:\Users\coder\Desktop\2024Code\6\20240605\update\MasterPageSiteMapTab\Tab\obj\Debug\Tab.pdb

@ -0,0 +1,5 @@
obj\Debug\ResolveAssemblyReference.cache
bin\Tab.dll
bin\Tab.pdb
obj\Debug\Tab.dll
obj\Debug\Tab.pdb
Loading…
Cancel
Save