悟生慧

 
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 27 下一页

2011年5月10日

怎样学好英语

摘要: 1.外籍教师说:每天听半小时英语,培养语感(注意,是无意识地听),我们小时候也是这样才学会说话的。你可以在休闲中播, 但只可以是半小时!2.抄得多自然熟,知识点抄抄抄 3.设立错题本(非常有效),把错的答案,为什么错,列出来 4.要对英语充满兴趣,细细体味英语中的词语表达精妙之处。 5.我跟你说!你每天要看以两段文字,如果没有时间,那就考试前一个星期每天看两篇!这样可以保持考试的阅读速度! 6.抄的单词本你们要复习啊! 7.找一个外国歌手做你的偶像,把他(她)的歌听完全 . 8.多看中英对照文章,这样对你的翻译语感非常有帮 阅读全文

posted @ 2011-05-10 19:44 悟生慧 阅读(175) 评论(0) 推荐(0) 编辑

2011年5月3日

winfrom的DataGird控件的自动排序功能禁用

摘要: ①DataGridView中的Columns属性里面可以设置。进入“EditColumns”窗口后,在相应的列属性设置里面把SortMode属性选择为"NotSortable"② for (int i = 0; i < this.dataGridView1.Columns.Count;i++) { this.dataGridView1.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable; } 阅读全文

posted @ 2011-05-03 09:58 悟生慧 阅读(343) 评论(0) 推荐(0) 编辑

2011年4月25日

winfrom阴阳历互相转换

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Globalization;//////引用内置namespace WindowsFormsApplication1{ public partial class Form3 : Form { #region private 阅读全文

posted @ 2011-04-25 11:02 悟生慧 阅读(360) 评论(0) 推荐(0) 编辑

2011年4月22日

阴阳历转换

摘要: using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.HtmlControls;using System.Data.OleDb;namespace Document{ /// <summary> 阅读全文

posted @ 2011-04-22 18:11 悟生慧 阅读(1341) 评论(0) 推荐(0) 编辑

2011年4月21日

判断字符串中是否包含另一个字符及位置.net/C#

摘要: TextBox1.Text.Trim().ToString().Contains("#");///或者TextBox1.Text.Trim().ToString().indexof('#') =2 //从前向后 定位 # 第一次出现的位置TextBox1.Text.Trim().ToString().indexof('#',1) =2 //从前向后 定位 # 从第三个字符串 第一次出现的位置TextBox1.Text.Trim().ToString().indexof('#',5,2) =6 //从前向后 定位 # 从第5 位 阅读全文

posted @ 2011-04-21 15:50 悟生慧 阅读(5132) 评论(0) 推荐(0) 编辑

实用javaScript技术-屏蔽

摘要: 一、屏蔽键盘所有键<script language="javascript"><!--function document.onkeydown(){event.keyCode = 0;event.returnvalue = false;}--></script>二、屏蔽鼠标右键 在body标签里加上oncontextmenu=self.event.returnvalue=false 或者:<script language="javascript"><!--function document.oncont 阅读全文

posted @ 2011-04-21 13:21 悟生慧 阅读(404) 评论(0) 推荐(0) 编辑

文本框只允许输入数字.net/javascript

摘要: <input type="text" name="test" onKeyUp="test1.value=(this.value=this.value.replace(/\D/g,'').substring(0,6)).substring(0,3)" > <br /><input name="test1" type="text" >用Up和Down有区别只能输入数字、字母、下划线<input ID="txtShopNumber&q 阅读全文

posted @ 2011-04-21 13:05 悟生慧 阅读(7566) 评论(1) 推荐(2) 编辑

怎样验证TextBox输入的全是数字 - .NET技术 / ASP.NET

摘要: 方法1: function InputNumb() { // debugger; if( window.event.keyCode==37)//可输入Tab return; if( window.event.keyCode==37 && window.event.keyCode==39)//可输入左右方向 return; if( window.event.keyCode==8 && window.event.keyCode==46)//可输入backspace del return; if( window.event.keyCode> =96 && 阅读全文

posted @ 2011-04-21 10:39 悟生慧 阅读(405) 评论(0) 推荐(0) 编辑

2011年4月20日

footer始终在底部CSS样式

摘要: #footer{ position:absolute; bottom:0; width:100%; height:10px; background:#ccc; line-height:100px; text-align:center;} 阅读全文

posted @ 2011-04-20 13:41 悟生慧 阅读(2784) 评论(0) 推荐(0) 编辑

2011年4月18日

时间格式转换ASP.NET

摘要: DateTime dt = DateTime.Now;// Label1.Text = dt.ToString();//2005-11-5 13:21:25// Label2.Text = dt.ToFileTime().ToString();//127756416859912816// Label3.Text = dt.ToFileTimeUtc().ToString();//127756704859912816// Label4.Text = dt.ToLocalTime().ToString();//2005-11-5 21:21:25// Label5.Text = dt.ToLong 阅读全文

posted @ 2011-04-18 17:22 悟生慧 阅读(203) 评论(0) 推荐(0) 编辑

上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 27 下一页

导航