摘要:
1.定义关键帧@keyframes zhuanquan{ 0% {-webkit-transform: rotate(0);} 100% {-webkit-transform: rotate(360deg);}}@-webkit-keyframes zhuanquan/* Safari and ... 阅读全文
摘要:
一.数组1.创建$arr = array();表示创建一个空数组,并把创建的空数组赋值给变量$arr。2.赋值,取值$fruit = array("苹果","香蕉","菠萝");array('0'=>'苹果');$fruit0 = $fruit['0'];3.for循环出数组内的值$fruit=ar... 阅读全文
摘要:
/// /// 查询EXCEL电子表格添加到DATASET /// /// 服务器路径 /// 表名 public DataSet ExecleDs(string filenameurl, string tab... 阅读全文
摘要:
阅读全文
摘要:
p:before{content:"开始+";}//在p标签内容之前插入内容p:after{content:"←结束";}//在p标签内容结束之后添加p:first-child{ color:#FC6;}//符合条件的第一个子元素p:last-child{color:#3F3;}//最后一个子元... 阅读全文
摘要:
IE10下调试会报javascript错误:Sys.WebForms.PageRequestManagerServerErrorExceptionScriptManager控件之后添加 阅读全文
摘要:
ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "updateScript", "alert('投票成功!')", true); 阅读全文
摘要:
一.代码部分 public static void initJavascript() { HttpContext.Current.Response.Write(" "); HttpContext.Current.Response.Write("... 阅读全文
摘要:
一.添加Newtonsoft.dll引用二.cs部分 Response.Cache.SetCacheability(HttpCacheability.NoCache); if (Request.QueryString["select"]!=null) ... 阅读全文
摘要:
1.页面部分 用户名:2.编写javascript脚本部分3.ashx中代码 public void ProcessRequest(HttpContext context) { context.Response.ContentType ... 阅读全文