摘要:
<script type="text/javascript"> $(function() { $("#<%=txtSearch.ClientID%>").focus(function() { if ($(this).val() == "请输入搜索内容") { $(this).css("color", "black").val(""); } }).blur(function() { //光标离开 if ($(this).val() == "&q 阅读全文
摘要:
用户控件 aUserControl<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %><div>这里是一个用户控件在这里可以当做一个aspx 页面来用</div>后台Control AccountControl中 用户控件的代码 public ActionResult aUserControl() { return View(); }用户控件在Index.aspx页面中使用<%@ Page Language="C#& 阅读全文
摘要:
/// <summary> /// 统计数据 /// </summary> /// <returns></returns> public List<plateNum> GetListPageForClassCount() { var classcount = from a in db.BBS_Class select a; List<plateNum> list = new List<plateNum>(); ... 阅读全文
摘要:
官网介绍http://www.my97.net/dp/demo/index.htm时间间隔 阅读全文
摘要:
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) { ... 阅读全文
摘要:
先贴一个国内某大公司的代码: 复制代码 代码如下: <script type="text/javascript">function lang(key) {mylang = {'ls_input_myb': '请输入您的账户','ls_myb_email': '漫游币账户为邮箱地址','ls_login_password': '请输入您的登录密码','ls_password_length': '密码长度为{0}-{1}位之间',' 阅读全文
摘要:
<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 阅读全文
摘要:
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... 阅读全文
摘要:
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... 阅读全文
摘要:
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... 阅读全文