摘要:
1.常用函数function(evt) { var e = (evt) ? evt : window.event; if (window.event) { e.cancelBubble = true; } else { e.stopPropagation(); }阻止事件function(ele, e, call) { if (window.addEventListener) ele.addEventListener(e, call, false); else ele.attachEvent("on" + e, call); }添加事件$("#addClassName").keydown(fu 阅读全文
2010年6月30日
摘要:
using System;using System.Data;using System.Data.SqlClient;using System.IO;using System.Windows.Forms;namespace BuilderEntity{ public partial class Build : Form { public Build( ) { InitializeComponent... 阅读全文
2010年6月29日
摘要:
1.表变量DECLARE @indextable table(uid int identity(1,1),id int)2.临时表CREATE Table#temptable (id int,date datetime)当数据量大时,建议使用临时表!放一个存储过程@变量(包括表变量)在where 里都变成变量,所以,在where用到表变量就得 加多一个别名,如:(select c_name fro... 阅读全文
摘要:
1./// <summary> /// 过滤不安全的字符串 /// </summary> /// <param name="Str"></param> /// <returns></returns> public static string FilteSQLStr(string Str) { Str = Str.Replace... 阅读全文
摘要:
$("#addClassName").keydown(function(e) { if (e.keyCode == 13) { e.stopPropagation(); //阻止事件冒泡 e.preventDefault(); } }).keyup(function(e) { if (e.keyCode == 13) { $("#addClassBtn").click(); } }); 阅读全文
2010年6月23日
摘要:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/User.Master" Inherits="System.Web.Mvc.ViewPage<AqiooViewModelItem<Aqioo.Modules.Consult.ViewModels.PubArticleModel>>" %>... 阅读全文
2010年6月20日
摘要:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Pages_Module_Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR... 阅读全文
摘要:
var cssText = ”font-weight:bold;color:red;”//下面写法用于firefox类型浏览器element.setAttribute(“style”,cssText);//下面写法用于IE类型浏览器element.style.cssText = cssText;<scriptlanguage="JavaScri... 阅读全文
2010年6月19日
摘要:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="E6-19.aspx.cs" Inherits="Pages_Feditor_E6_19" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh... 阅读全文