上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: //新的评论function sendCom(aId) { var currUrl = window.location; var liuyan = document.getElementById("liuyan"); var txt = liuyan.outerHTML; if (txt == null || txt == "") { alert("回复内容不可以为空"); } else { var check = checkLogin(); if (check != "") //查看是否登录 { ... 阅读全文
posted @ 2012-10-24 10:46 南潇湘 阅读(522) 评论(0) 推荐(0) 编辑
摘要: get支持跨域,post不支持跨域,安全性更高 阅读全文
posted @ 2012-10-24 10:19 南潇湘 阅读(192) 评论(0) 推荐(0) 编辑
摘要: Cross-site request forgery:跨站请求伪造,也被称成为“one click attack”或者session riding,通常缩写为CSRF或者XSRF,是一种对网站的恶意利用。尽管听起来像跨站脚本(XSS),但它与XSS非常不同,并且攻击方式几乎相左。XSS利用站点内的信任用户,而CSRF则通过伪装来自受信任用户的请求来利用受信任的网站。与XSS攻击相比,CSRF攻击往往不大流行(因此对其进行防范的资源也相当稀少)和难以防范,所以被认为比XSS更具危险性。 示例和特性 CSRF攻击通过在授权用户访问的页面中包含链接或者脚本的方式工作。例如:一个网站用户B... 阅读全文
posted @ 2012-10-24 09:23 南潇湘 阅读(549) 评论(0) 推荐(0) 编辑
摘要: function HomePage() { if (document.all) { document.body.style.behavior = 'url(#default#homepage)'; document.body.setHomePage(window.location); } else if (window.sidebar) { if (window.netscape) { try { netscape.security.PrivilegeManager.enablePr... 阅读全文
posted @ 2012-10-22 14:02 南潇湘 阅读(191) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FixtableHeader.aspx.cs" Inherits="Text.FixtableHeader" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&q 阅读全文
posted @ 2012-10-19 10:00 南潇湘 阅读(338) 评论(0) 推荐(0) 编辑
摘要: function GetBrowserType() { var ua = navigator.userAgent.toLowerCase(); if (ua == null) return "ie"; else if (ua.indexOf('chrome') != -1) return "chrome"; else if (ua.indexOf('opera') != -1) return "opera"; else if (ua.indexOf('msie') != -1) retu 阅读全文
posted @ 2012-10-19 09:25 南潇湘 阅读(229) 评论(0) 推荐(0) 编辑
摘要: <!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><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2012-10-18 14:57 南潇湘 阅读(221) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace Text{ public partial class InsusDate : System.Web.UI.UserControl { private int? _year; private int? _month; private int? _day; ... 阅读全文
posted @ 2012-10-17 10:20 南潇湘 阅读(300) 评论(0) 推荐(0) 编辑
摘要: publicvoidDisAbleDropDownListItem(DropDownListddl){foreach(ListItemliinddl.Items){if(li.Value=="1"||li.Text=="RUN"){li.Attributes.Add("disabled","disabled");}}}protected void Page_Load(object sender, EventArgs e) { DisAbleDropDownListItem(ddl); }在Page_Load时,应用 阅读全文
posted @ 2012-10-17 09:37 南潇湘 阅读(265) 评论(0) 推荐(0) 编辑
摘要: System.Drawing.Image img = System.Drawing.Image.FromFile(Commen.CommenFunction.Path + picPath);//找到物理地址 pic.Width = img.Width; pic.Height = img.Height; 阅读全文
posted @ 2012-10-16 11:14 南潇湘 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页