2016年2月24日

在网页中实现QQ在线客服功能的流程

摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="QQText.aspx.cs" Inherits="在线客服模块_QQText" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/199 阅读全文

posted @ 2016-02-24 17:11 周肉肉 阅读(764) 评论(0) 推荐(0) 编辑

网页QQ在线客服代码

摘要: 1.百度搜索QQ推广 2. 3. 4. 阅读全文

posted @ 2016-02-24 17:09 周肉肉 阅读(266) 评论(0) 推荐(0) 编辑

文本阴影特效

摘要: <style type="text/css"> p{text-align:center;padding:24px; margin:0; color: #000; background:#000; font-size: 80px;font-weight: bold;text-shadow: 0 0 4 阅读全文

posted @ 2016-02-24 17:02 周肉肉 阅读(137) 评论(0) 推荐(0) 编辑

2016年2月23日

根据不同的窗口尺寸来选择不同的样式

摘要: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>根据不同的窗口 阅读全文

posted @ 2016-02-23 17:40 周肉肉 阅读(312) 评论(0) 推荐(0) 编辑

用JavaScript检测视频格式支持

摘要: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>用JavaSc 阅读全文

posted @ 2016-02-23 17:38 周肉肉 阅读(3542) 评论(2) 推荐(0) 编辑

用JavaScript检测音频格式支持

摘要: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>用JavaSc 阅读全文

posted @ 2016-02-23 17:37 周肉肉 阅读(1820) 评论(0) 推荐(0) 编辑

C#取整函数Math.Round、Math.Ceiling和Math.Floor

摘要: 1.Math.Round:四舍六入五取偶 引用内容 Math.Round(0.0) //0Math.Round(0.1) //0Math.Round(0.2) //0Math.Round(0.3) //0Math.Round(0.4) //0Math.Round(0.5) //0Math.Round 阅读全文

posted @ 2016-02-23 17:27 周肉肉 阅读(16499) 评论(0) 推荐(1) 编辑

asp.net在同一页面跳转到指定位置

摘要: asp.net在同一页面跳转到指定位置 方案一 location.hash = "#ID" location.hash 可以在同一页面跳转到指定的位置。 页面没有缓冲,一下子就到了指定位置,很突兀 方案二 var hr = $("#ID"); var anh = $(hr).offset().top 阅读全文

posted @ 2016-02-23 17:26 周肉肉 阅读(1336) 评论(0) 推荐(0) 编辑

对存储过程进行加密和解密

摘要: 用于加密的存储过程 (sp_EncryptObject) : 存储过程(sp_EncryptObject)加密的方法是在存储过程,函数,视图的“As”位置前加上“with encryption”;如果是触发器,就在“for”位置前加“with encryption”。 如果触发器是{ AFTER | 阅读全文

posted @ 2016-02-23 17:23 周肉肉 阅读(1715) 评论(0) 推荐(0) 编辑

各种SQL语句

摘要: 1.去除重复语句 DISTINCT关键字可以从SQL语句的结果中除去重复的行。如果没有指定DISTINCT关键字,那么将返回所有的行,其中包括重复的行。在使用DISTINCT关键字去除重复记录时,需将DISTINCT关键字放在第一个字段名的前面。DISTINCT的语法格式如下: SELECT DIS 阅读全文

posted @ 2016-02-23 17:22 周肉肉 阅读(314) 评论(0) 推荐(0) 编辑

导航