在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Bootstrap为基础的adminise界面模板

Bootstrap为基础的adminise界面模板

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.11M
  • 下载次数:4
  • 浏览次数:83
  • 发布时间:2020-09-29
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
基于LCLFramework的ASP.NET MVC Plugin开发一个以Bootstrap为基础的adminise界面模板http://www.cnblogs.com/luomingui/p/4164856.html
【实例截图】
【核心代码】
AdminiseShellPlugin
├── WebMvcClient
│   ├── App_Start
│   │   ├── FilterConfig.cs
│   │   └── RouteConfig.cs
│   ├── bin
│   │   ├── LCL.dll
│   │   ├── LCL.MvcExtensions.dll
│   │   └── LCL.Utils.dll
│   ├── Default.aspx
│   ├── Default.aspx.cs
│   ├── Default.aspx.designer.cs
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── LCLServer.svc
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── WebMvcClient.csproj.FileListAbsolute.txt
│   │   │   ├── WebMvcClient.csprojResolveAssemblyReference.cache
│   │   │   ├── WebMvcClient.dll
│   │   │   └── WebMvcClient.pdb
│   │   └── Release
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Package
│   │   │   └── PackageTmp
│   │   │   ├── bin
│   │   │   │   ├── LCL.dll
│   │   │   │   ├── LCL.MvcExtensions.dll
│   │   │   │   ├── LCL.Utils.dll
│   │   │   │   ├── System.Net.Http.dll
│   │   │   │   ├── System.Net.Http.Formatting.dll
│   │   │   │   ├── System.Net.Http.WebRequest.dll
│   │   │   │   ├── System.Web.Helpers.dll
│   │   │   │   ├── System.Web.Http.dll
│   │   │   │   ├── System.Web.Http.WebHost.dll
│   │   │   │   ├── System.Web.Mvc.dll
│   │   │   │   ├── System.Web.Razor.dll
│   │   │   │   ├── System.Web.WebPages.Deployment.dll
│   │   │   │   ├── System.Web.WebPages.dll
│   │   │   │   ├── System.Web.WebPages.Razor.dll
│   │   │   │   ├── WebMvcClient.dll
│   │   │   │   └── zh-Hans
│   │   │   │   ├── System.Net.Http.Formatting.resources.dll
│   │   │   │   ├── System.Net.Http.resources.dll
│   │   │   │   ├── System.Net.Http.WebRequest.resources.dll
│   │   │   │   ├── System.Web.Helpers.resources.dll
│   │   │   │   ├── System.Web.Http.resources.dll
│   │   │   │   ├── System.Web.Http.WebHost.resources.dll
│   │   │   │   ├── System.Web.Mvc.resources.dll
│   │   │   │   ├── System.Web.Razor.resources.dll
│   │   │   │   ├── System.Web.WebPages.Deployment.resources.dll
│   │   │   │   ├── System.Web.WebPages.Razor.resources.dll
│   │   │   │   └── System.Web.WebPages.resources.dll
│   │   │   ├── Default.aspx
│   │   │   ├── Global.asax
│   │   │   ├── LCLServer.svc
│   │   │   └── Web.config
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   ├── TransformWebConfig
│   │   │   ├── assist
│   │   │   │   └── Web.config
│   │   │   ├── original
│   │   │   │   └── Web.config
│   │   │   └── transformed
│   │   │   └── Web.config
│   │   ├── WebMvcClient.csproj.FileListAbsolute.txt
│   │   ├── WebMvcClient.csprojResolveAssemblyReference.cache
│   │   ├── WebMvcClient.dll
│   │   ├── WebMvcClient.pdb
│   │   └── _WPPLastBuildInfo.txt
│   ├── Plugins
│   │   ├── BlogPlugin
│   │   │   ├── BlogAreaRegistration.cs
│   │   │   ├── BlogPlugin.cs
│   │   │   ├── BlogPlugin.csproj
│   │   │   ├── BlogPlugin.csproj.user
│   │   │   ├── Content
│   │   │   │   ├── Site.css
│   │   │   │   └── themes
│   │   │   │   └── base
│   │   │   │   ├── images
│   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   │   │   ├── jquery.ui.accordion.css
│   │   │   │   ├── jquery.ui.all.css
│   │   │   │   ├── jquery.ui.autocomplete.css
│   │   │   │   ├── jquery.ui.base.css
│   │   │   │   ├── jquery.ui.button.css
│   │   │   │   ├── jquery.ui.core.css
│   │   │   │   ├── jquery.ui.datepicker.css
│   │   │   │   ├── jquery.ui.dialog.css
│   │   │   │   ├── jquery.ui.progressbar.css
│   │   │   │   ├── jquery.ui.resizable.css
│   │   │   │   ├── jquery.ui.selectable.css
│   │   │   │   ├── jquery.ui.slider.css
│   │   │   │   ├── jquery.ui.tabs.css
│   │   │   │   └── jquery.ui.theme.css
│   │   │   ├── Controllers
│   │   │   │   ├── BlogController.cs
│   │   │   │   ├── HelloController.cs
│   │   │   │   └── SupportController.cs
│   │   │   ├── Models
│   │   │   │   └── Movies.cs
│   │   │   ├── persistent.xml
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   └── PublishProfiles
│   │   │   │   ├── BlogPlugin.pubxml
│   │   │   │   └── BlogPlugin.pubxml.user
│   │   │   ├── Scripts
│   │   │   │   ├── jquery-1.5.1.js
│   │   │   │   ├── jquery-1.5.1.min.js
│   │   │   │   ├── jquery-1.5.1-vsdoc.js
│   │   │   │   ├── jquery-ui-1.8.11.js
│   │   │   │   ├── jquery-ui-1.8.11.min.js
│   │   │   │   ├── jquery.unobtrusive-ajax.js
│   │   │   │   ├── jquery.unobtrusive-ajax.min.js
│   │   │   │   ├── jquery.validate.js
│   │   │   │   ├── jquery.validate.min.js
│   │   │   │   ├── jquery.validate.unobtrusive.js
│   │   │   │   ├── jquery.validate.unobtrusive.min.js
│   │   │   │   ├── jquery.validate-vsdoc.js
│   │   │   │   ├── MicrosoftAjax.debug.js
│   │   │   │   ├── MicrosoftAjax.js
│   │   │   │   ├── MicrosoftMvcAjax.debug.js
│   │   │   │   ├── MicrosoftMvcAjax.js
│   │   │   │   ├── MicrosoftMvcValidation.debug.js
│   │   │   │   ├── MicrosoftMvcValidation.js
│   │   │   │   ├── modernizr-1.7.js
│   │   │   │   └── modernizr-1.7.min.js
│   │   │   ├── Views
│   │   │   │   ├── Blog
│   │   │   │   │   └── Index.cshtml
│   │   │   │   ├── Hello
│   │   │   │   │   ├── Index.cshtml
│   │   │   │   │   └── Other.cshtml
│   │   │   │   ├── Shared
│   │   │   │   │   ├── Error.cshtml
│   │   │   │   │   └── _Layout.cshtml
│   │   │   │   ├── Support
│   │   │   │   │   └── Index.cshtml
│   │   │   │   ├── _ViewStart.cshtml
│   │   │   │   └── Web.config
│   │   │   ├── web.config
│   │   │   ├── web.Debug.config
│   │   │   └── web.Release.config
│   │   ├── BootstrapAppCenterPlugin
│   │   │   ├── BootstrapAppCenterPlugin.csproj
│   │   │   ├── BootstrapAppCenterPlugin.csproj.user
│   │   │   ├── BundleActivator.cs
│   │   │   ├── Controllers
│   │   │   │   └── HomeController.cs
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap-datepicker.css
│   │   │   │   ├── bootstrap-datetimepicker.css
│   │   │   │   ├── img
│   │   │   │   │   ├── checkbox.png
│   │   │   │   │   ├── edit.png
│   │   │   │   │   ├── flag
│   │   │   │   │   │   ├── 10.png
│   │   │   │   │   │   ├── 1_close.png
│   │   │   │   │   │   ├── 1_open.png
│   │   │   │   │   │   ├── 2.png
│   │   │   │   │   │   ├── 3.png
│   │   │   │   │   │   ├── 4.png
│   │   │   │   │   │   ├── 5.png
│   │   │   │   │   │   ├── 6.png
│   │   │   │   │   │   ├── 7.png
│   │   │   │   │   │   ├── 8.png
│   │   │   │   │   │   └── 9.png
│   │   │   │   │   ├── folder_Close.gif
│   │   │   │   │   ├── folder_Open.gif
│   │   │   │   │   ├── line_bottom.gif
│   │   │   │   │   ├── line_center.gif
│   │   │   │   │   ├── line_conn.gif
│   │   │   │   │   ├── line_top.gif
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── minus_bottom.gif
│   │   │   │   │   ├── minus_center.gif
│   │   │   │   │   ├── minus_noLine.gif
│   │   │   │   │   ├── minus_root.gif
│   │   │   │   │   ├── minus_top.gif
│   │   │   │   │   ├── moveArrow.png
│   │   │   │   │   ├── page.gif
│   │   │   │   │   ├── plus_bottom.gif
│   │   │   │   │   ├── plus_center.gif
│   │   │   │   │   ├── plus_noLine.gif
│   │   │   │   │   ├── plus_root.gif
│   │   │   │   │   ├── plus_top.gif
│   │   │   │   │   ├── radio.png
│   │   │   │   │   ├── remove.png
│   │   │   │   │   └── sim
│   │   │   │   │   ├── 10.png
│   │   │   │   │   ├── 1_close.png
│   │   │   │   │   ├── 1_open.png
│   │   │   │   │   ├── 2.png
│   │   │   │   │   ├── 3.png
│   │   │   │   │   ├── 4.png
│   │   │   │   │   ├── 5.png
│   │   │   │   │   ├── 6.png
│   │   │   │   │   ├── 7.png
│   │   │   │   │   ├── 8.png
│   │   │   │   │   └── 9.png
│   │   │   │   ├── login.css
│   │   │   │   ├── ltIE9.css
│   │   │   │   ├── style.css
│   │   │   │   └── zTreeStyle.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── images
│   │   │   │   ├── avatar1.jpg
│   │   │   │   ├── avatar2.jpg
│   │   │   │   ├── avatar3.jpg
│   │   │   │   ├── avatar5.jpg
│   │   │   │   ├── avatar6.jpg
│   │   │   │   ├── avatar7.jpg
│   │   │   │   ├── avatar8.jpg
│   │   │   │   ├── avatar9.jpg
│   │   │   │   ├── blue.png
│   │   │   │   ├── green.png
│   │   │   │   ├── img7.jpg
│   │   │   │   ├── line.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── minimal.png
│   │   │   │   ├── orange.png
│   │   │   │   ├── pdf.jpg
│   │   │   │   ├── red.png
│   │   │   │   ├── sep.gif
│   │   │   │   ├── sort_asc.png
│   │   │   │   ├── sort_both.png
│   │   │   │   ├── sprite.png
│   │   │   │   ├── sprite-skin-flat.png
│   │   │   │   ├── Title.png
│   │   │   │   └── zip.jpg
│   │   │   ├── js
│   │   │   │   ├── analytics.js
│   │   │   │   ├── bootstrap-datepicker.js
│   │   │   │   ├── bootstrap-datetimepicker.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── bootstrap-spinner.js
│   │   │   │   ├── bootstrap-wysihtml5-0.0.2.js
│   │   │   │   ├── css3-mediaqueries.js
│   │   │   │   ├── flot
│   │   │   │   │   ├── jquery.flot.js
│   │   │   │   │   ├── jquery.flot.pie.js
│   │   │   │   │   ├── jquery.flot.resize.js
│   │   │   │   │   ├── jquery.flot.stack.js
│   │   │   │   │   └── jquery.flot.time.js
│   │   │   │   ├── functions.js
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── icheck.min.js
│   │   │   │   ├── ion.rangeSlider.min.js
│   │   │   │   ├── jquery-1.10.2.min.map
│   │   │   │   ├── jquery.accordion.js
│   │   │   │   ├── jquery.cookie.js
│   │   │   │   ├── jquery.custom-scrollbar.min.js
│   │   │   │   ├── jquery.dataTables.min.js
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.ztree-2.6.js
│   │   │   │   ├── jqvmap
│   │   │   │   │   ├── jquery.vmap.min.js
│   │   │   │   │   ├── jquery.vmap.sampledata.js
│   │   │   │   │   └── maps
│   │   │   │   │   └── jquery.vmap.usa.js
│   │   │   │   ├── modernizr.js
│   │   │   │   ├── morris-0.4.1.min.js
│   │   │   │   ├── raphael-2.1.0.min.js
│   │   │   │   ├── respond.min.js
│   │   │   │   ├── selectnav.min.js
│   │   │   │   └── wysihtml5-0.3.0_rc2.min.js
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   └── PublishProfiles
│   │   │   │   ├── BootstrapAppCenterPlugin.pubxml
│   │   │   │   └── BootstrapAppCenterPlugin.pubxml.user
│   │   │   ├── Views
│   │   │   │   ├── Home
│   │   │   │   │   └── index.cshtml
│   │   │   │   ├── Shared
│   │   │   │   │   ├── Error.cshtml
│   │   │   │   │   └── _Layout.cshtml
│   │   │   │   ├── _ViewStart.cshtml
│   │   │   │   └── Web.config
│   │   │   ├── Web.config
│   │   │   ├── Web.Debug.config
│   │   │   └── Web.Release.config
│   │   └── BootstrapCoursePlugin
│   │   ├── BootstrapCoursePlugin.cs
│   │   ├── BootstrapCoursePlugin.csproj
│   │   ├── BootstrapCoursePlugin.csproj.user
│   │   ├── Content
│   │   │   └── adminise
│   │   │   ├── 404.html
│   │   │   ├── alerts.html
│   │   │   ├── assets
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   └── style.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   │   ├── images
│   │   │   │   │   ├── avatar1.jpg
│   │   │   │   │   ├── avatar2.jpg
│   │   │   │   │   ├── avatar3.jpg
│   │   │   │   │   ├── avatar5.jpg
│   │   │   │   │   ├── avatar6.jpg
│   │   │   │   │   ├── avatar7.jpg
│   │   │   │   │   ├── avatar8.jpg
│   │   │   │   │   ├── avatar9.jpg
│   │   │   │   │   ├── blue.png
│   │   │   │   │   ├── green.png
│   │   │   │   │   ├── img7.jpg
│   │   │   │   │   ├── line.png
│   │   │   │   │   ├── logo.png
│   │   │   │   │   ├── minimal.png
│   │   │   │   │   ├── orange.png
│   │   │   │   │   ├── pdf.jpg
│   │   │   │   │   ├── red.png
│   │   │   │   │   ├── sep.gif
│   │   │   │   │   ├── sort_asc.png
│   │   │   │   │   ├── sort_both.png
│   │   │   │   │   ├── sprite.png
│   │   │   │   │   ├── sprite-skin-flat.png
│   │   │   │   │   └── zip.jpg
│   │   │   │   └── js
│   │   │   │   ├── analytics.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── bootstrap-wysihtml5-0.0.2.js
│   │   │   │   ├── functions.js
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── icheck.min.js
│   │   │   │   ├── ion.rangeSlider.min.js
│   │   │   │   ├── jquery-1.10.2.min.map
│   │   │   │   ├── jquery.accordion.js
│   │   │   │   ├── jquery.custom-scrollbar.min.js
│   │   │   │   ├── jquery.dataTables.min.js
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jqvmap
│   │   │   │   │   ├── jquery.vmap.min.js
│   │   │   │   │   ├── jquery.vmap.sampledata.js
│   │   │   │   │   └── maps
│   │   │   │   │   └── jquery.vmap.usa.js
│   │   │   │   ├── morris-0.4.1.min.js
│   │   │   │   ├── raphael-2.1.0.min.js
│   │   │   │   ├── respond.min.js
│   │   │   │   ├── selectnav.min.js
│   │   │   │   └── wysihtml5-0.3.0_rc2.min.js
│   │   │   ├── basicform.html
│   │   │   ├── basictables.html
│   │   │   ├── blockquotes.html
│   │   │   ├── breadcrumbs.html
│   │   │   ├── buttons.html
│   │   │   ├── calendar.html
│   │   │   ├── charts.html
│   │   │   ├── checkboxes.html
│   │   │   ├── comments.html
│   │   │   ├── compose.html
│   │   │   ├── dashboard1.html
│   │   │   ├── dashboard2.html
│   │   │   ├── datatables.html
│   │   │   ├── emaildetails.html
│   │   │   ├── formgroup.html
│   │   │   ├── gallery.html
│   │   │   ├── icons.html
│   │   │   ├── inbox.html
│   │   │   ├── index.html
│   │   │   ├── invoice.html
│   │   │   ├── labels.html
│   │   │   ├── layouts1.html
│   │   │   ├── layouts2.html
│   │   │   ├── layouts3.html
│   │   │   ├── layouts4.html
│   │   │   ├── lockscreen1.html
│   │   │   ├── lockscreen2.html
│   │   │   ├── login1.html
│   │   │   ├── login2.html
│   │   │   ├── modals.html
│   │   │   ├── navbar.html
│   │   │   ├── pagination.html
│   │   │   ├── progressbar.html
│   │   │   ├── sliders.html
│   │   │   ├── switches.html
│   │   │   ├── tabs.html
│   │   │   ├── tiles.html
│   │   │   ├── tooltip.html
│   │   │   ├── typography.html
│   │   │   └── wysiwygeditor.html
│   │   ├── Controllers
│   │   │   └── HomeController.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── PublishProfiles
│   │   │   ├── BootstrapCoursePlugin.pubxml
│   │   │   └── BootstrapCoursePlugin.pubxml.user
│   │   ├── Views
│   │   │   ├── Home
│   │   │   │   ├── Alerts.cshtml
│   │   │   │   ├── BasicForms.cshtml
│   │   │   │   ├── BasicTables.cshtml
│   │   │   │   ├── Blockquotes.cshtml
│   │   │   │   ├── Breadcrumbs.cshtml
│   │   │   │   ├── Buttons.cshtml
│   │   │   │   ├── Charts.cshtml
│   │   │   │   ├── CheckBoxes.cshtml
│   │   │   │   ├── Comments.cshtml
│   │   │   │   ├── DataTables.cshtml
│   │   │   │   ├── Empty.cshtml
│   │   │   │   ├── Index.cshtml
│   │   │   │   ├── InputGroups.cshtml
│   │   │   │   ├── Labels.cshtml
│   │   │   │   ├── Modal.cshtml
│   │   │   │   ├── Navbars.cshtml
│   │   │   │   ├── Pagination.cshtml
│   │   │   │   ├── Paragraph.cshtml
│   │   │   │   ├── ProgressBars.cshtml
│   │   │   │   ├── Sliders.cshtml
│   │   │   │   ├── Switches.cshtml
│   │   │   │   ├── Tabs.cshtml
│   │   │   │   ├── Tiles.cshtml
│   │   │   │   ├── Tooltips.cshtml
│   │   │   │   └── WYSIWYG.cshtml
│   │   │   ├── _ViewStart.cshtml
│   │   │   └── Web.config
│   │   ├── Web.config
│   │   ├── Web.Debug.config
│   │   └── Web.Release.config
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   └── PublishProfiles
│   │   ├── LCLMvc.pubxml
│   │   └── LCLMvc.pubxml.user
│   ├── Web.config
│   ├── Web.Debug.config
│   ├── WebMvcClient.csproj
│   ├── WebMvcClient.csproj.user
│   └── Web.Release.config
└── WebMvcClient.sln

64 directories, 396 files

标签:

实例下载地址

Bootstrap为基础的adminise界面模板

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警