摘要:
对IE8和Firefox3.6测试结果:1.常规的在head里面使用Script标签引用js,不再是堵塞模式加载(也就是说脚本文件不再是一个一个被加载,加载完成一个才开始加载另一个),而是最大6个JS同时开始加载(并发限制为6个),但是script的执行顺序还是按照Script标签顺序,而且会阻碍页面的呈现。2.由于1的原因,所以使用document.write("script.../script")(此方式对Firefox无效)的方式和head.append(script)(此方式兼容IE和Firefox)的方式使用异步加载意义不大3.但是使用head.append(script)的 阅读全文
摘要:
String.Format = function(str) { var reg; var args; //自定义一个undifined,增快速度 var undifined; if (arguments[1] && typeof (arguments[1]) == "object") { reg = new RegExp("\\{([^\\d]\\w*)\\}", "g"); args = arguments[1]; } else { reg = new RegExp("\\{(\\d+)\\}","g"); //将arguments转换成数组然后赋值给args args = Array.pr 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO;using System.Linq;using System.Data.SqlClient;using System.Data;using System.Text.RegularExpressions;using System.Diagnostics;using System.Net.Mail;using System.Threading;using System.C 阅读全文
摘要:
public static void SendMailUseGmail(string gmailAddress, string gmailPwd, string name, string toAddress, string info, string title) { System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage(); msg.To.Add(toAddress); msg.From = new MailAddress(toAddress, name, System.Text.Encoding.UTF8); m 阅读全文
摘要:
%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Reg.aspx.cs" Inherits="YXShop.Web.Reg" %%@ Register Src="UserControls/NavControl.ascx" TagName="NavControl" TagPrefix="ucNav" %%@ Register Src="UserControls/LeftSeriesControl.ascx" TagName="LeftSeriesControl" TagPrefix="ucLeft" %!DOCTYP 阅读全文
摘要:
--用指定的字符拆分一个字符串,并传入一个字符串判断传入的这个字符串是否存在于拆分以后的字符串数组中create function SplitString(@expression varchar(500),@char varchar(10),@str varchar(50)) returns bit as begin --如果传进来的字符串是null则返回0 if(isnull(@expression,' ')=' ') return 0declare @beginIndex int,@endIndex int --截取子串的起始索引和结束索引 declare @Count int --记录循 阅读全文
摘要:
在global.assx中重写如下方法:public override string GetVaryByCustomString(HttpContext context, string arg) { if (arg == "news_ascx") { string value= HttpRuntime.Cache["news_ascx"]; if (value == null) { value = DateTime.Now.ToString(); HttpRuntime.Cache.Insert("", value, null, DateTime.MaxValue, new TimeSp 阅读全文
摘要:
functiongetCurrentStyle(ele,name){if(typeof(ele)=="string"){ele=document.getElementById(ele);}if(document.all){returnele.currentStyle[name];}returndocument.defaultView.getComputedStyle(ele,null)[name];}functionupdate(){show("layer");}//弹出层functionshow(divID,relativeTop,relativeLe 阅读全文
摘要:
在配置web.config之前调用在VS2008命令行工具中运行 aspnet_regsql ,将对应的表安装到指定数据库。在web.config里对Profile进行如下配置 connectionStrings add name="myConn" connectionString="server=.;integrated security=true;database=AB;"/ /connectionStringsprofile inherits="MyClasses.MyPro" defaultProvider="MyProfileProvider" enabled="tru 阅读全文
摘要:
<!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>test</title> <style type="tex 阅读全文