实例介绍
基于web投票系统(附论文)源码 源码描述: 三层架构 用户注册登陆,发起投票,管理自己的投票,查看并投票,图表形式显示投票结果 添加、管理好友,查看好友的投票,修改登陆密码。 管理员可以通过后台对会员,投票进行管理,查看投票结果。 默认用户登录名:test@qq.com 密码:test
【实例截图】
【核心代码】
hpxvote_2169463f-768b-41c8-9e4e-fd794005c78e
└── hpxvote_2169463f-768b-41c8-9e4e-fd794005c78e
├── BLL
│ ├── admin.cs
│ ├── BLL.csproj
│ ├── BLL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── VOTE.BLL.dll
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysManage.cs
│ ├── users.cs
│ ├── users_friend.cs
│ ├── votes.cs
│ ├── votes_detial.cs
│ └── votes_tp.cs
├── Common
│ ├── Assistant.cs
│ ├── ChartHelper.cs
│ ├── Common.csproj
│ ├── Common.csproj.user
│ ├── ConfigHelper.cs
│ ├── DataCache.cs
│ ├── DataToExcel.cs
│ ├── DEncrypt
│ │ ├── DEncrypt.cs
│ │ ├── DESEncrypt.cs
│ │ ├── HashEncode.cs
│ │ ├── RSACryption.cs
│ │ └── vssver2.scc
│ ├── HttpProc.cs
│ ├── INIFile.cs
│ ├── MailSender.cs
│ ├── MessageBox.cs
│ ├── obj
│ │ └── Debug
│ │ ├── Common.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── VOTE.Common.dll
│ ├── PageBase.cs
│ ├── PageValidate.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RMB.cs
│ ├── StringPlus.cs
│ ├── TimeParser.cs
│ ├── UrlOper.cs
│ ├── Vote.suo
│ └── vssver2.scc
├── DAL
│ ├── admin.cs
│ ├── DAL.csproj
│ ├── DAL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── VOTE.DAL.dll
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysManage.cs
│ ├── users.cs
│ ├── users_friend.cs
│ ├── votes.cs
│ ├── votes_detial.cs
│ └── votes_tp.cs
├── DB_51aspx
│ ├── vote_log.ldf
│ └── vote.mdf
├── DBUtility
│ ├── BaseSqlMapDao.cs
│ ├── CommandInfo.cs
│ ├── DbHelperMySQL.cs
│ ├── DbHelperOleDb.cs
│ ├── DbHelperOra.cs
│ ├── DbHelperSQL2.cs
│ ├── DbHelperSQL.cs
│ ├── DbHelperSQLite.cs
│ ├── DbHelperSQLP.cs
│ ├── DBUtility.csproj
│ ├── DBUtility.csproj.user
│ ├── DESEncrypt.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DBUtility.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── VOTE.DBUtility.dll
│ ├── OracleHelper.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PubConstant.cs
│ ├── SQLHelper.cs
│ └── Vote.suo
├── Lib
│ ├── COM.Excel.dll
│ ├── Excel.dll
│ ├── IBatisNet.Common.dll
│ ├── IBatisNet.DataMapper.dll
│ ├── LTP.Accounts.dll
│ ├── LTP.Accounts.txt
│ ├── LtpPageControl.dll
│ ├── Microsoft.Web.UI.WebControls.dll
│ ├── MySql.Data.dll
│ ├── OpenSmtp.dll
│ ├── OWC10Chart.dll
│ ├── System.Data.SQLite.DLL
│ └── System.Data.SQLite.lib
├── Model
│ ├── admin.cs
│ ├── Model.csproj
│ ├── Model.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── VOTE.Model.dll
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysNode.cs
│ ├── users.cs
│ ├── users_friend.cs
│ ├── votes.cs
│ ├── votes_detial.cs
│ └── votes_tp.cs
├── Vote.sln
├── Vote.suo
├── Web
│ ├── admin
│ │ ├── base.aspx
│ │ ├── base.aspx.cs
│ │ ├── base.aspx.designer.cs
│ │ ├── css
│ │ │ ├── default.css
│ │ │ ├── main.css
│ │ │ └── style.css
│ │ ├── image
│ │ │ ├── 0n.gif
│ │ │ ├── 0r.gif
│ │ │ ├── 1n.gif
│ │ │ ├── 1r.gif
│ │ │ ├── 2n.gif
│ │ │ ├── 2r.gif
│ │ │ ├── 3n.gif
│ │ │ ├── 3r.gif
│ │ │ ├── 4n.gif
│ │ │ ├── 4r.gif
│ │ │ ├── 5n.gif
│ │ │ ├── 5r.gif
│ │ │ ├── 6n.gif
│ │ │ ├── 6r.gif
│ │ │ ├── 7n.gif
│ │ │ ├── 7r.gif
│ │ │ ├── 8n.gif
│ │ │ ├── 8r.gif
│ │ │ ├── 9n.gif
│ │ │ ├── 9r.gif
│ │ │ ├── firstg1.gif
│ │ │ ├── firstg.gif
│ │ │ ├── firstn1.gif
│ │ │ ├── firstn.gif
│ │ │ ├── go.jpg
│ │ │ ├── lastg2.gif
│ │ │ ├── lastg.gif
│ │ │ ├── lastn2.gif
│ │ │ ├── lastn.gif
│ │ │ ├── loading.gif
│ │ │ ├── moren.gif
│ │ │ ├── new.gif
│ │ │ ├── nextg.gif
│ │ │ ├── nextn.gif
│ │ │ ├── prevg.gif
│ │ │ ├── prevn.gif
│ │ │ ├── queding.gif
│ │ │ ├── right.gif
│ │ │ ├── Thumbs.db
│ │ │ └── vssver2.scc
│ │ ├── images
│ │ │ ├── act_btn.gif
│ │ │ ├── bar1.gif
│ │ │ ├── bar9.gif
│ │ │ ├── body_background.png
│ │ │ ├── border_bg.png
│ │ │ ├── border_end.png
│ │ │ ├── BoxOver_bd.png
│ │ │ ├── btu_ok.png
│ │ │ ├── button_login2.gif
│ │ │ ├── calendar.gif
│ │ │ ├── closed.gif
│ │ │ ├── close.gif
│ │ │ ├── content_li_top.png
│ │ │ ├── Folder_bigbtu.png
│ │ │ ├── +.gif
│ │ │ ├── -.gif
│ │ │ ├── home.gif
│ │ │ ├── ico.gif
│ │ │ ├── left_tabid_cnt_top.png
│ │ │ ├── left_tab_Selected.gif
│ │ │ ├── left_tab_Selectedno.gif
│ │ │ ├── left_tt.gif
│ │ │ ├── L.gif
│ │ │ ├── line_2.gif
│ │ │ ├── loadingAnimation.gif
│ │ │ ├── login_1.gif
│ │ │ ├── login_2.gif
│ │ │ ├── login_3.gif
│ │ │ ├── login_4.gif
│ │ │ ├── login_5.gif
│ │ │ ├── login_6.gif
│ │ │ ├── login-welcome.gif
│ │ │ ├── logo.gif
│ │ │ ├── logo.png
│ │ │ ├── manage_arrow_down.gif
│ │ │ ├── manage_arrow_left.gif
│ │ │ ├── manage_arrow_right.gif
│ │ │ ├── manage_arrow_up.gif
│ │ │ ├── manage_back.gif
│ │ │ ├── manage_top_bg.gif
│ │ │ ├── minus.gif
│ │ │ ├── nopic.gif
│ │ │ ├── offline.gif
│ │ │ ├── oicq.gif
│ │ │ ├── online.gif
│ │ │ ├── on-of.gif
│ │ │ ├── open.gif
│ │ │ ├── plus.gif
│ │ │ ├── progress1.jpg
│ │ │ ├── progress.jpg
│ │ │ ├── quote.gif
│ │ │ ├── Rect.gif
│ │ │ ├── RectNoColor.gif
│ │ │ ├── re.gif
│ │ │ ├── Setting_TabPage2.png
│ │ │ ├── Skin_onmouseout_bg.gif
│ │ │ ├── Skin_onmouseout_bg.png
│ │ │ ├── Skin_onmouseover_bg.gif
│ │ │ ├── Skin_onmouseover_bg.png
│ │ │ ├── skinpic.png
│ │ │ ├── skin_used.png
│ │ │ ├── sword03.gif
│ │ │ ├── tab.gif
│ │ │ ├── tableline_bottom.jpg
│ │ │ ├── tableline.jpg
│ │ │ ├── tableline_top.jpg
│ │ │ ├── tablemde.jpg
│ │ │ ├── tdbj.gif
│ │ │ ├── Template_bg.png
│ │ │ ├── tip.gif
│ │ │ ├── top_bg.jpg
│ │ │ ├── top.jpg
│ │ │ ├── top_logo.jpg
│ │ │ ├── top_tt_bg.gif
│ │ │ ├── used.png
│ │ │ ├── user_btu_left.png
│ │ │ ├── user_btu_right.png
│ │ │ ├── user_dleft_tab7.png
│ │ │ ├── user_err.gif
│ │ │ ├── UserIco_bg.png
│ │ │ ├── user_login_01.gif
│ │ │ ├── user_login_02.gif
│ │ │ ├── user_login_03.gif
│ │ │ ├── user_login_04.gif
│ │ │ ├── user_login_05.gif
│ │ │ ├── user_msg.gif
│ │ │ ├── user_post_input.png
│ │ │ ├── user_post_inputtxt1.png
│ │ │ ├── user_post_inputtxt.png
│ │ │ ├── user_post_title_bg.png
│ │ │ ├── user_post_top_bg.png
│ │ │ ├── user_setting_title_tab_bg.png
│ │ │ ├── user_suc.gif
│ │ │ ├── user_team_bg.png
│ │ │ ├── user_team_top.png
│ │ │ ├── VerifyCode.png
│ │ │ ├── win_top.png
│ │ │ ├── worldmap.jpg
│ │ │ └── X.gif
│ │ ├── index.aspx
│ │ ├── index.aspx.cs
│ │ ├── index.aspx.designer.cs
│ │ ├── login.aspx
│ │ ├── login.aspx.cs
│ │ ├── login.aspx.designer.cs
│ │ ├── main.aspx
│ │ ├── main.aspx.cs
│ │ ├── main.aspx.designer.cs
│ │ ├── manage_mem.aspx
│ │ ├── manage_mem.aspx.cs
│ │ ├── manage_mem.aspx.designer.cs
│ │ ├── modify.aspx
│ │ ├── modify.aspx.cs
│ │ ├── modify.aspx.designer.cs
│ │ ├── pass.aspx
│ │ ├── pass.aspx.cs
│ │ ├── pass.aspx.designer.cs
│ │ ├── Style
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1a.gif
│ │ │ ├── 1b.gif
│ │ │ ├── 1c.gif
│ │ │ ├── 1d.gif
│ │ │ ├── 1e.gif
│ │ │ ├── 1f.gif
│ │ │ ├── 218.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 601.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 701.gif
│ │ │ ├── 702.gif
│ │ │ ├── 71.gif
│ │ │ ├── arrow.gif
│ │ │ ├── body_background.png
│ │ │ ├── border_bg.png
│ │ │ ├── border_end.png
│ │ │ ├── btu_ok.png
│ │ │ ├── close.gif
│ │ │ ├── content_li_top.png
│ │ │ ├── default.css
│ │ │ ├── Folder_bigbfftu.png
│ │ │ ├── Folder_bigbtu.png
│ │ │ ├── Folder_bigbtu - 副本.png
│ │ │ ├── left_tabid_cnt_top.png
│ │ │ ├── left_tab_Selected.gif
│ │ │ ├── left_tab_Selectedno.gif
│ │ │ ├── line_2.gif
│ │ │ ├── logo.png
│ │ │ ├── menu.js
│ │ │ ├── open.gif
│ │ │ ├── option.gif
│ │ │ ├── progress1.jpg
│ │ │ ├── progress.jpg
│ │ │ ├── quote.gif
│ │ │ ├── skinpic.png
│ │ │ ├── skin_used.png
│ │ │ ├── style.css
│ │ │ ├── tab.gif
│ │ │ ├── used.png
│ │ │ ├── user_btu_left.png
│ │ │ ├── user_btu_right.png
│ │ │ ├── user_post_input.png
│ │ │ ├── user_post_inputtxt1.png
│ │ │ ├── user_post_inputtxt.png
│ │ │ ├── user_post_title_bg.png
│ │ │ ├── user_post_top_bg.png
│ │ │ ├── user_setting_title_tab_bg.png
│ │ │ ├── user_team_top.png
│ │ │ └── win_top.png
│ │ ├── view_vote.aspx
│ │ ├── view_vote.aspx.cs
│ │ └── view_vote.aspx.designer.cs
│ ├── bin
│ │ ├── bin.zip
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Microsoft.Vbe.Interop.dll
│ │ ├── MySql.Data.dll
│ │ ├── office.dll
│ │ ├── OpenSmtp.dll
│ │ ├── OWC10Chart.dll
│ │ ├── System.Data.SQLite.dll
│ │ ├── VOTE.BLL.dll
│ │ ├── VOTE.BLL.pdb
│ │ ├── VOTE.Common.dll
│ │ ├── VOTE.Common.pdb
│ │ ├── VOTE.DAL.dll
│ │ ├── VOTE.DAL.pdb
│ │ ├── VOTE.DBUtility.dll
│ │ ├── VOTE.DBUtility.pdb
│ │ ├── VOTE.Model.dll
│ │ └── VOTE.Model.pdb
│ ├── Controls
│ │ ├── checkright.ascx
│ │ ├── checkright.ascx.cs
│ │ ├── checkright.ascx.designer.cs
│ │ ├── copyright.ascx
│ │ ├── CopyRight.ascx.cs
│ │ └── CopyRight.ascx.designer.cs
│ ├── Css
│ │ ├── Common.css
│ │ ├── default.css
│ │ ├── jquery.ennui.contentslider.css
│ │ ├── kxcommon-0369a8e2d.css
│ │ ├── kxindex-01291066e.css
│ │ ├── templatemo_style.css
│ │ ├── validator.css
│ │ └── vote-8.css
│ ├── Images
│ │ ├── 01.png
│ │ ├── add.gif
│ │ ├── ad.gif
│ │ ├── a.png
│ │ ├── article01.jpg
│ │ ├── article02.jpg
│ │ ├── article03.jpg
│ │ ├── article04.jpg
│ │ ├── bottom.jpg
│ │ ├── centerbg.jpg
│ │ ├── cs_leftImg.jpg
│ │ ├── cs_leftImg.png
│ │ ├── cs_rightImg.jpg
│ │ ├── cs_rightImg.png
│ │ ├── delete.gif
│ │ ├── edit.gif
│ │ ├── !.gif
│ │ ├── leftBtnBG.jpg
│ │ ├── loading.gif
│ │ ├── loginbg.jpg
│ │ ├── loginbtn.jpg
│ │ ├── logo.jpg
│ │ ├── manage.gif
│ │ ├── nan.gif
│ │ ├── nu.gif
│ │ ├── reg1.gif
│ │ ├── reg2.gif
│ │ ├── reg3.gif
│ │ ├── reg4.gif
│ │ ├── resetbtn.jpg
│ │ ├── system.jpg
│ │ ├── templatemo_body.jpg
│ │ ├── templatemo_content.jpg
│ │ ├── templatemo_footer.jpg
│ │ ├── templatemo_header.png
│ │ ├── templatemo_image_01.jpg
│ │ ├── templatemo_image_02.jpg
│ │ ├── templatemo_menu_hover.png
│ │ ├── templatemo_menu.jpg
│ │ ├── templatemo_sitebar.jpg
│ │ ├── templatmeo_site_title.jpg
│ │ ├── Thumbs.db
│ │ ├── titleBG.jpg
│ │ ├── topbg.jpg
│ │ ├── toplogo.jpg
│ │ └── view.gif
│ ├── index.aspx
│ ├── index.aspx.cs
│ ├── index.aspx.designer.cs
│ ├── Js
│ │ ├── AjaxUpdater.js
│ │ ├── DateTimeMask.js
│ │ ├── formValidator.js
│ │ ├── formValidatorRegex.js
│ │ ├── jquery-1.4.2.min.js
│ │ ├── jquery.easing.1.3.js
│ │ ├── jquery.ennui.contentslider.js
│ │ ├── jquery.js
│ │ └── jquery-latest.js
│ ├── My97DatePicker
│ │ ├── calendar.js
│ │ ├── config.js
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ ├── My97DatePicker.htm
│ │ ├── skin
│ │ │ ├── datePicker.gif
│ │ │ ├── default
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── WdatePicker.css
│ │ │ └── whyGreen
│ │ │ ├── bg.jpg
│ │ │ ├── datepicker.css
│ │ │ └── img.gif
│ │ └── WdatePicker.js
│ ├── obj
│ │ └── Debug
│ │ └── Web.csproj.FileListAbsolute.txt
│ ├── person
│ │ ├── add_friend.aspx
│ │ ├── add_friend.aspx.cs
│ │ ├── add_friend.aspx.designer.cs
│ │ ├── add_vote.aspx
│ │ ├── add_vote.aspx.cs
│ │ ├── add_vote.aspx.designer.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Default.aspx.designer.cs
│ │ ├── friend_vote.aspx
│ │ ├── friend_vote.aspx.cs
│ │ ├── friend_vote.aspx.designer.cs
│ │ ├── HTMLPage1.htm
│ │ ├── logo.aspx
│ │ ├── logo.aspx.cs
│ │ ├── logo.aspx.designer.cs
│ │ ├── modi.aspx
│ │ ├── modi.aspx.cs
│ │ ├── modi.aspx.designer.cs
│ │ ├── more_vote.aspx
│ │ ├── more_vote.aspx.cs
│ │ ├── more_vote.aspx.designer.cs
│ │ ├── my_friend.aspx
│ │ ├── my_friend.aspx.cs
│ │ ├── my_friend.aspx.designer.cs
│ │ ├── my_friend_sh.aspx
│ │ ├── my_friend_sh.aspx.cs
│ │ ├── my_friend_sh.aspx.designer.cs
│ │ ├── my_vote.aspx
│ │ ├── my_vote.aspx.cs
│ │ ├── my_vote.aspx.designer.cs
│ │ ├── out_login.aspx
│ │ ├── out_login.aspx.cs
│ │ ├── out_login.aspx.designer.cs
│ │ ├── pers.Master
│ │ ├── pers.Master.cs
│ │ ├── pers.Master.designer.cs
│ │ ├── pwd.aspx
│ │ ├── pwd.aspx.cs
│ │ ├── pwd.aspx.designer.cs
│ │ ├── vb1.gif
│ │ ├── view_vote.aspx
│ │ ├── view_vote.aspx.cs
│ │ └── view_vote.aspx.designer.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── reg.aspx
│ ├── reg.aspx.cs
│ ├── reg.aspx.designer.cs
│ ├── Site1.Master
│ ├── Site1.Master.cs
│ ├── Site1.Master.designer.cs
│ ├── Style.css
│ ├── upload
│ │ ├── 20111031225320.jpg
│ │ ├── 20111031225443.jpg
│ │ ├── 20111031225605.jpg
│ │ ├── 20111031225715.jpg
│ │ ├── 20111031225817.jpg
│ │ └── 20111102113350.jpg
│ ├── ValidateCode.aspx
│ ├── ValidateCode.aspx.cs
│ ├── ValidateCode.aspx.designer.cs
│ ├── vb1.gif
│ ├── Web.config
│ ├── Web.csproj
│ ├── Web.csproj.user
│ └── webctrl_client
│ └── 1_0
│ ├── Images
│ │ ├── folder.gif
│ │ ├── folderopen.gif
│ │ ├── html.gif
│ │ └── root.gif
│ ├── MultiPage.htc
│ ├── TabStrip.htc
│ ├── toolbar.htc
│ ├── TreeImages
│ │ ├── f.gif
│ │ ├── fminus.gif
│ │ ├── fplus.gif
│ │ ├── i.gif
│ │ ├── L.gif
│ │ ├── Lminus.gif
│ │ ├── Lplus.gif
│ │ ├── minus.gif
│ │ ├── plus.gif
│ │ ├── r.gif
│ │ ├── Rminus.gif
│ │ ├── Rplus.gif
│ │ ├── rtl
│ │ │ ├── F.gif
│ │ │ ├── Fminus.gif
│ │ │ ├── Fplus.gif
│ │ │ ├── I.gif
│ │ │ ├── L.gif
│ │ │ ├── Lminus.gif
│ │ │ ├── Lplus.gif
│ │ │ ├── minus.gif
│ │ │ ├── plus.gif
│ │ │ ├── r.gif
│ │ │ ├── Rminus.gif
│ │ │ ├── Rplus.gif
│ │ │ ├── T.gif
│ │ │ ├── Tminus.gif
│ │ │ ├── Tplus.gif
│ │ │ └── white.gif
│ │ ├── T.gif
│ │ ├── Tminus.gif
│ │ ├── Tplus.gif
│ │ └── white.gif
│ └── treeview.htc
└── 论文
└── 论文.doc
56 directories, 564 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论