需要一个coreplay视频播放器 免安装(免签的)

先上代码:前台代码
&!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&管理员管理&/title&
&link href="../ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" /&
&script src="../js/jquery-1.5.2.min.js" type="text/javascript"&&/script&
&script src="../ligerUI/json2.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/core/base.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerForm.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerDrag.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerDialog.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerTextBox.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerCheckBox.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerComboBox.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerGrid.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerDateEditor.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerSpinner.js" type="text/javascript"&&/script&
&script src="../ligerUI/js/plugins/ligerResizable.js" type="text/javascript"&&/script&
&script src="../js/LG.js" type="text/javascript"&&/script&
&script type="text/javascript"&
var manager,
var detailW
$(function () {
g = manager = $("#maingrid").ligerGrid({
//title : 'gg',
columns: [
{ display: 'ID编号', name: 'id', width: 50, type: 'int', frozen: true },
{ display: '名字', name: 'Name', width: 100, editor: { type: 'text'} },
{ display: '密码', name: 'Password', width: 260, type: 'text', editor: { type: 'text'} },
{ display: '登录IP', name: 'Loginip', type: 'text', width: 100, editor: { type: 'text'} }
onSelectRow: function (data, rowindex, rowobj) {
$("#Name").html(data.Name);
$("#Password").html(data.Password);
dataAction: 'local',
pageSize: 10,
pageSizeOptions: [10, 20, 30],
url: "ManagerData.ashx?action=managerlist",
isScroll: false,
// checkbox: true,
rownumbers: true,
width: '100%',
heightDiff: -1,
onRClickToSelect: true,
onContextmenu: function (parm, e) {
actionCustomerID = parm.data.
menu.show({ top: e.pageY, left: e.pageX });
return false;
$("#maingrid").width($("#maingrid").width() - 16);
$("#grid").height(document.documentElement.clientHeight - $(".toolbar").height());
//创建表单结构
$("#form2").ligerForm({
inputWidth: 170,
labelWidth: 90,
space: 40,
validate: true,
{ name: "id", newline: true, type: "hidden" },
{ display: "用户名称", name: "UserName", newline: true, type: "text", validate: { required: true, minlength: 2} },
{ display: "密
码", name: "Password1", newline: true, type: "text", validate: { required: true, minlength: 6} },
{ display: "重复密码", name: "Password2", newline: true, type: "text", validate: { required: true, minlength: 6} }
function Addadmin() {
$('input[name="id"]').val("");
$('input[name="UserName"]').val("");
$('input[name="Password1"]').val("");
$('input[name="Password2"]').val("");
detailWin = $.ligerDialog.open({
height: 200,
target: $("#form2"),
width: null,
height: 'auto',
//showMax: true,
//showToggle: true,
//showMin: true,
//isResize: true,
modal: false,
title: "新增",
buttons: [
{ text: '确定', onclick: function () { addNewRow(); detailWin.hide(); manager.loadData() } },
{ text: '取消', onclick: function () { detailWin.hide(); } }
function beginEdit() {
$('input[name="id"]').val("");
$('input[name="UserName"]').val("");
$('input[name="Password1"]').val("");
$('input[name="Password2"]').val("");
var row = manager.getSelectedRow();
if (!row) { alert('请选择行'); return; }
detailWin = $.ligerDialog.open({
height: 200,
target: $("#form2"),
width: null,
height: 'auto',
modal: false,
title: "新增",
buttons: [
{ text: '确定', onclick: function () { UpdateRow(); detailWin.hide(); manager.loadData() } },
{ text: '取消', onclick: function () { detailWin.hide(); } }
$('input[name="id"]').val(row.id);
$('input[name="UserName"]').val(row.Name);
$('input[name="Password1"]').val(row.Password);
$('input[name="Password2"]').val(row.Password);
function deleteRow() {
var row = manager.getSelectedRow();
if (!row) { alert('请选择行'); return; }
type: "get",
url: 'ManagerData.ashx?action=delmanager',
data: { id: row.id },
cache: false,
async: false,
success: function (result) {
var obj_result = eval('(' + result + ')');
//返回信息 {'success':true}
if (obj_result.success == true) {
LG.showSuccess('删除管理员成功');
LG.showError('删除失败!');
function addNewRow() {
if (liger.get("UserName").getValue() == "") {
LG.tip('用户名不能为空?');
if (liger.get("Password1").getValue() != liger.get("Password2").getValue()) {
LG.tip('两次输入的密码不相等?');
type: "get",
url: 'ManagerData.ashx?action=addmanager',
data: { UserName: liger.get("UserName").getValue(), Password: liger.get("Password1").getValue() },
cache: false,
async: false,
success: function (result) {
var obj_result = eval('(' + result + ')');
//返回信息 {'success':true}
if (obj_result.success == true) {
LG.showSuccess('管理员添加成功');
manager.loadData();
LG.showError('添加失败!');
manager.loadData();
function UpdateRow() {
if ($("#id").val() == "") {
LG.tip('编辑信息可能丢失?');
if (liger.get("UserName").getValue() == "") {
LG.tip('用户名不能为空?');
if (liger.get("Password1").getValue() != liger.get("Password2").getValue()) {
LG.tip('两次输入的密码不相等?');
type: "get",
url: 'ManagerData.ashx?action=upmanager',
data: { id: $("#id").val(), UserName: liger.get("UserName").getValue(), Password: liger.get("Password1").getValue() },
cache: false,
async: false,
success: function (result) {
var obj_result = eval('(' + result + ')');
//返回信息 {'success':true}
if (obj_result.success == true) {
LG.showSuccess('管理员修改成功');
LG.showError('修改失败!');
&a class="l-button" style="width: 80 float: margin-left: 6" onclick="beginEdit()"&修改行&/a&
&a class="l-button" style="width: 80 float: margin-left: 6" onclick="deleteRow()"&删除选择&/a&
&a class="l-button" style="width: 100 float: margin-left: 6" onclick="Addadmin()"&添加行&/a&
&div id="grid"&
&div id="maingrid"&
&form id="form2" style="display: none"&
后台代码:
using System.W
using Newtonsoft.J
using System.D
public class ManagerData : IHttpHandler
public void ProcessRequest(HttpContext context)
context.Response.ContentType = "text/plain";
string action = context.Request.Params["action"];
//获取管理员列表
if (action == "managerlist")
DataTable table = new DataTable();
string sql = "select * from A_Admin where 1=1 ";
if (ISDatabase.SelectDatebase() == 1)
table = DbHelp.DataTableSql(sql);
table = DbHelperOleDb.DataTableSql(sql);
string ResJsonStr = "{ \"Rows\": ";
if (table.Rows.Count & 0)
Newtonsoft.Json.Converters.IsoDateTimeConverter timeConverter = new Newtonsoft.Json.Converters.IsoDateTimeConverter();
timeConverter.DateTimeFormat = "yyyy'-'MM'-'dd";
ResJsonStr = ResJsonStr + JsonConvert.SerializeObject(table, Formatting.Indented, timeConverter) + ", \"Total\": " + table.Rows.Count + " }";
context.Response.Write(ResJsonStr);
//添加管理员
if (action == "addmanager")
string UserName = context.Request.Params["UserName"];
string Password = context.Request.Params["Password"];
string StrIP=PubliclClass.getIp();
string sql = "insert into A_Admin(Name,Password,Loginip) values('" + UserName + "','" + Password + "','" + StrIP + "') ";
if (ISDatabase.SelectDatebase() == 1)
result = DbHelp.ExecuteSql(sql);
result = DbHelperOleDb.ExecuteSql(sql);
if (result & 0)
context.Response.Write("{\"success\":true}");
context.Response.Write("{\"success\":false}");
//更新管理员
if (action == "upmanager")
string id = context.Request.Params["id"];
string UserName = context.Request.Params["UserName"];
string Password = context.Request.Params["Password"];
string StrIP = PubliclClass.getIp();
string sql = "update A_Admin set Name='" + UserName + "',Password='" + Password + "',Loginip='" + StrIP + "' where id=" + id + " ";
if (ISDatabase.SelectDatebase() == 1)
result = DbHelp.ExecuteSql(sql);
result = DbHelperOleDb.ExecuteSql(sql);
if (result & 0)
context.Response.Write("{\"success\":true}");
context.Response.Write("{\"success\":false}");
//删除管理员
if (action == "delmanager")
string id = context.Request.Params["id"];
string sql = "delete A_Admin where id=" + id + " ";
if (ISDatabase.SelectDatebase() == 1)
result = DbHelp.ExecuteSql(sql);
result = DbHelperOleDb.ExecuteSql(sql);
if (result & 0)
context.Response.Write("{\"success\":true}");
context.Response.Write("{\"success\":false}");
public bool IsReusable
return false;
现在网上的前台框架越来越多,大多都基于jQuery的,不得不说jquery的出现给大家带来很多好处。随jquery的前台框架也很多有的简单有的复杂,用了ligerUi的人都会感觉到他们的文档很少,没有帮助文档说明用起来就很费劲。对于初学者还是考虑用easyui吧!比较人家文档很丰富,而且官方例子也很明了。
阅读(...) 评论()求一个破解的coreplay万能播放器,适合N85的,谢谢啊!急。邮箱:wzy-_百度知道
求一个破解的coreplay万能播放器,适合N85的,谢谢啊!急。邮箱:wzy-
我在网上找的都过期了,自己从手机上的UC下了一个,证书也不能通过验证,哪位老大有现成的破解的给传一个啊,谢谢了!
提问者采纳
已发送,请注意查收
提问者评价
谢谢了啊,没想到这么简单就搞定了,感谢!
其他类似问题
为您推荐:
您可能关注的推广
万能播放器的相关知识
其他1条回答
直接把手机破解了 不就不需要证书了吗
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁今日论坛第 1 个签到,每日签到可得财富值+2,连续5天签到后再连续签到则每日可得财富值
+4,记得每天都来签到哦~
上一主题:
下一主题:
查看: 2304 | 回复: 6
已解决 求coreplay免签版
UID 7907563
财富值 181
交易信用 0
积分/帖子:199
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
已解决 求coreplay免签版
急求!跪求!拜托了!!!
[ 本帖最后由 zx135179 于
17:16 编辑 ]
UID 5851420
财富值 10185
贡献值 395
交易信用 0
两耳不闻窗外事
积分/帖子:12850
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
请善用论坛右上角谷歌提供的站内全文搜索服务,搜索结果很多,内容很精准。(站内搜索请注意选择,不要选Web)
免签名软件
真的很抱歉,工作繁忙,短信息无法回复了,大家有疑难问题请发帖。
(哥累了.未来一片渺茫......)
UID 4638076
财富值 62202
好评度 177
交易信用 0
人气值 4692
荣誉卸任管理组
积分/帖子:13031
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
♫ o失 ♥
状态: 离线
证书签名&&或者&&破 解都可以实现免签
1. 新手有什么问题请善用论坛的搜索功能:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {} else {window.open(this.src);}" onmousewheel="return imgzoom(this);" alt="" />screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {} else {window.open(this.src);}" onmousewheel="return imgzoom(this);" alt="" />
& & 90%的问题你可以自己找到答案
& && && && && && && && && && && && && && && && && && && && & 具体使用方法 →
& & 积分50以下士兵,请用论坛的站内搜索→screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {} else {window.open(this.src);}" onmousewheel="return imgzoom(this);" alt="" />screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {} else {window.open(this.src);}" onmousewheel="return imgzoom(this);" alt="" />
screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {} else {window.open(this.src);}" onmousewheel="return imgzoom(this);" alt="" />
UID 5570566
财富值 1181
交易信用 0
积分/帖子:1210
连续签到天数:1
全部签到天数:1
注册时间:
手机型号:
来自:**福建省XX市XX机关的旁边
状态: 离线
两位版主都来了~~~
&&下载次数: 265
面& && && && && && &泪
朝& && && && && && &流
大& && && && && && &满
海& && && && && && &面
我们期待----
UID 7597935
财富值 247
交易信用 0
积分/帖子:237
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
哇卡卡 LZ面子真大
UID 7907563
财富值 181
交易信用 0
积分/帖子:199
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
原帖由 嘻稀哈哈 于
11:42 发表
两位版主都来了~~~
这个可以 我也是说啊、真是受到了惊吓\\\
财富值 4709
交易信用 0
°行堋NIC...】
积分/帖子:4637
连续签到天数:1
全部签到天数:45
注册时间:
手机型号:
来自:索RY
状态: 离线
要自己搜索啊!!!!!!!!![s:26]
微信扫一扫关注dospy今日论坛第 1 个签到,每日签到可得财富值+2,连续5天签到后再连续签到则每日可得财富值
+4,记得每天都来签到哦~
上一主题:
下一主题:
查看: 1116 | 回复: 6
跪求coreplay播放器
UID 436642
交易信用 0
积分/帖子:4
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
跪求coreplay播放器
我在网上下载了无数个sis或sixs文件,都有一个共同点就是:证书过期,无法安装,能力有限,求一个免签名,可直接安装用的coreplay播放器。我的手机是E71
。不甚感激!
交易信用 0
积分/帖子:59
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
下载个塞班直签,不用XX基本都能装
UID 436642
交易信用 0
积分/帖子:4
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
回复 #2 and045 的帖子
越说越迷糊了,我不懂这个,能帮我弄一个直接就可以安装的么?
财富值 2438
交易信用 0
积分/帖子:2183
连续签到天数:1
全部签到天数:3
注册时间:
手机型号:
来自:河南
状态: 离线
回复 #3 huyongcy 的帖子
推荐谷雨影音,这个个人觉得比coreplay好多了,可以播放rmvb,rm之类的电影
只需在安装--程序管理--设置--在线证书检查--关,软件安装--全部就行了
[ 本帖最后由 独孤心逝 于
08:34 编辑 ]
&&下载次数: 81
红尘画卷,画得是谁的生死之恋?最后却只能守着那不变的容颜,一守就是一千年。
UID 436642
交易信用 0
积分/帖子:4
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
回复 #4 独孤心逝 的帖子
附件打不开,谁有帮帮忙发一个给我。我的qq:
UID 9479945
交易信用 0
积分/帖子:2
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
coreplay播放器
coreplay播放器,我的也老是证书过期。。
交易信用 0
积分/帖子:3
连续签到天数:0
全部签到天数:0
注册时间:
手机型号:
状态: 离线
微信扫一扫关注dospy万能播放器Coreplayer V1.1.2多语言版 vS60 3RD_快播播放器下载_播放器下载
网站地图 | 加入收藏
近期更新的播放器软件
本类播放器软件总排名
站长强烈推荐的播放器
当前位置 :
> 万能播放器Coreplayer V1.1.2多语言版 vS60 3RD
万能播放器Coreplayer V1.1.2多语言版 vS60 3RD
万能播放器Coreplayer V1.1.2多语言版 vS60 3RD >> 播放器软件介绍
支持众多媒体格式:
MP3, MP2, AAC, H.263, WAV, OGG,
Speex, WAVPACK, FLAC, MPC, TTA,
AMR, ADPCM, ALaw, MuLaw, Midi
H.264 (CoreAVC), MPEG-1, MPEG-4 part 2 (ASP),
DivX, XviD, Theora, Dirac, VP3, MJPEG, NRE,
JPEG, BMP, GIF, PNG (no progressive JPEG support)
A4:容器格式:
Matroska, TS, PS, 3GPP, MOV, AVI, MPEG-4, NSV
感谢您认真阅读完本简介:提供:万能播放器Coreplayer V1.1.2多语言版 vS60 3RD,版权归开发者所有,本站所有内容来源于互联网,如有侵权,请来信告知。希望网友们不要破坏互联网平衡、支持正版、合法使用。本站软件都经过杀毒,为了安全和保护账号的角度,还是请大家下载后在进行一次检测。最后,播放器之家祝:广大网友使用软件愉快。
下载地址:下载帮助(找不到下载地址?)
猜您还可能要找以下版本软件
上一篇: 下一篇:
收藏起来:
1、播放器之家所提供的影音播放器软件绝大部分是免费和绿色免安装版本。我们都亲自运行测试后才上传,尽力保证没有木马和病毒,但限于能力及系统等因素,无法保证所有软件都没有任何问题,如果您发现链接错误或其它问题,请在线留言反馈给我们,谢谢! QQ:
2、脚本之家旗下-播放器之家尊重知识产权。 本站不提供破解文件及注册码,若无意中侵犯到您的权益,敬请联系我们。我们会在收到信息后及时给予配合处理; 所有资源均可正常下载,为了获得最快的下载速度,我们推荐您使用 迅雷 下载本站提供的软件。
3、为确保正常使用请使用 WinRAR3.5版本以上 解压本站播放器软件。
4、本站为非营利性站点,所有资源均是网上搜集或私下交流学习之用,任何涉及商业盈利目的均不得使用,否则产生的一切后果将由您自己承担!本站仅仅提供一个观摩学习的环境,不对任何资源负法律责任。所有资源请在下载后24小时内删除。如果您觉得满意,请购买正版,唯有如此才能更好支持你所喜欢的软件更好发展!本站严厉谴责和鄙夷一切利用本站资源进行牟利的行为!

我要回帖

更多关于 视频播放器 免安装 的文章

 

随机推荐