上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: <script type="text/javascript"> $(function() { $("#<%=txtSearch.ClientID%>").focus(function() { if ($(this).val() == "请输入搜索内容") { $(this).css("color", "black").val(""); } }).blur(function() { //光标离开 if ($(this).val() == "&q 阅读全文
posted @ 2013-01-11 09:15 南潇湘 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 用户控件 aUserControl<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %><div>这里是一个用户控件在这里可以当做一个aspx 页面来用</div>后台Control AccountControl中 用户控件的代码 public ActionResult aUserControl() { return View(); }用户控件在Index.aspx页面中使用<%@ Page Language="C#& 阅读全文
posted @ 2013-01-09 15:40 南潇湘 阅读(452) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 统计数据 /// </summary> /// <returns></returns> public List<plateNum> GetListPageForClassCount() { var classcount = from a in db.BBS_Class select a; List<plateNum> list = new List<plateNum>(); ... 阅读全文
posted @ 2013-01-09 09:18 南潇湘 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 官网介绍http://www.my97.net/dp/demo/index.htm时间间隔 阅读全文
posted @ 2013-01-08 11:18 南潇湘 阅读(128) 评论(0) 推荐(0) 编辑
摘要: public IQueryable<BBS_Theme> GetListPage(int PageSize, int PageIndex, NameValueCollection nvcParamWhere, NameValueCollection nvcorderby, ref int AllCount) { #region where var searchPredicate = PredicateExtensions.True<BBS_Theme>(); if (nvcParamWhere != null) { ... 阅读全文
posted @ 2013-01-07 18:00 南潇湘 阅读(2601) 评论(0) 推荐(0) 编辑
摘要: 先贴一个国内某大公司的代码: 复制代码 代码如下: <script type="text/javascript">function lang(key) {mylang = {'ls_input_myb': '请输入您的账户','ls_myb_email': '漫游币账户为邮箱地址','ls_login_password': '请输入您的登录密码','ls_password_length': '密码长度为{0}-{1}位之间',' 阅读全文
posted @ 2012-11-15 11:45 南潇湘 阅读(2031) 评论(1) 推荐(0) 编辑
摘要: <img border="0" alt="有事点这里" src="http://wpa.qq.com/pa?p=1:1025011641:3">点击跳到网页qq2.头像选择<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www 阅读全文
posted @ 2012-11-07 17:21 南潇湘 阅读(154) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { List<Person> personList =new List<Person>(){ new Person(3),//重复数据 new Person(3), new Person(2), new Person(1) }; //使用匿名方法 List<Person> delegateList = per... 阅读全文
posted @ 2012-11-02 16:44 南潇湘 阅读(453) 评论(0) 推荐(0) 编辑
摘要: JS 回车提交,兼容IE、火狐、Opera、Chrome、Safari…… 1、JavaScript 方法:[javascript] <script> document.onkeydown=function(event){ e = event ? event :(window.event ? window.event : null); if(e.keyCode==13){ //执行的方法 alert('回车检测到了'); } } </script> <script> docume... 阅读全文
posted @ 2012-10-31 11:11 南潇湘 阅读(322) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace DelegateDemo{ //声明委托 public delegate void MyDel(); //声明带参的委托 public delegate void MyDel2(int num1, int num2); //声明带有返值的委托 public delegate string MyDel3(string s); //声明委托用于演示匿名方法 public... 阅读全文
posted @ 2012-10-24 14:43 南潇湘 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页