摘要:
1、js 2、服务器控件 3、添加js btn_ok.Attributes.Add("onclick","return a()"); 4、这样的话,当点击这个控件的时候,就会先执行js脚本,如果js返回的是false,就不会执行事件 阅读全文
摘要:
int a = 12345678; //格式为sring输出 Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); Label2.Text = "asdfadsf"+a.ToString()+"adsfasdf"; Label1.Text = string.Format("asdfadsf{0:C}adsfasdf",a);//asdfa... 阅读全文
摘要:
GridView中Dataformatstring 格式化日期应注意的问题 1、HtmlEncode="False" 2、DataFormatString="{0:d}" C#格式化日期时间 DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:25 Label2.Text = dt.... 阅读全文
摘要:
1、js文件calendar.js/* ----------- Calendar : Day Selecter ------------ author : satellite @ cnvery create : 2005-11-17 site : http://www.cnvery.net/ ------------------------------------------------ --... 阅读全文
摘要:
于是上网一查,有人给出了答案: http://lixf.net/?action=show&id=933 出现这个错误的原因是你在.cs文件中的类名和.aspx中的类名不相同造成的.例如,.cs文件名叫教师信息.aspx(教师信息.cs),但是在.cs文件代码中的load方法前的名称却为 _default,归结起来就是类名不一致造成的.必须仔细检查. 再看自己的源码确实有错误。至此错误解决。 阅读全文
摘要:
1、document.getElementById("Button2").click(); 2、 ,Invalidation是方法名称,方法必须,也只能包含两个参数(object sender, EventArgs e),也就是说,这个链接调用的其实就是后台的一个按钮的事件,这个按钮也可以不存在,事件名称也可以改变,但是签名不能改变 protected void Invalidatio... 阅读全文
摘要:
var rbl=document.all.rdo_add.length;//取得RadioButtonList的个数,在我的项目当中,RadioButtonList(id="rdo_add")只有两个item,但是取得的length长度是三个(id="rdo_add",id="rdo_add_0",id="rdo_add_1"),其中也包括RadioButtonList本身 var b = ... 阅读全文
摘要:
-------------- 函数检索 -------------- trim函数: trim() lTrim() rTrim() 校验字符串是否为空: checkIsNotEmpty(str) 校验字符串是否为整型: checkIs... 阅读全文