homecontroller控制器中的index动作代码如下:publicactionresultindex(){listlist=newlist(){newselectlistitem(){text="张三",value="001"},newselectlistitem(){text="李四",v...
分类:
Web程序 时间:
2014-06-03 11:23:32
阅读次数:
366
1、script文件放在body标签最后,script默认是
type="text/javascript",所以可以省略 2、css文件也要提取出来单独放在一个.css文件中用引入文件中
3、建立scripts文件夹,用于放置脚本文件 4、建立css文件夹用于放置c...
分类:
Web程序 时间:
2014-06-03 11:09:34
阅读次数:
304
var tb1 = Tb1.Text; if (string.IsNullOrEmpty(tb1))
{ tb1 = "0000"; } var s1 = tb1.Substring...
分类:
其他好文 时间:
2014-06-03 09:07:17
阅读次数:
184
1.简单委托示例using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
SimpleTest{ class Program { private d...
分类:
其他好文 时间:
2014-06-03 09:04:42
阅读次数:
266
方法一:不设置ReadOnly属性,通过onfocus=this.blur()来模拟,如下:在此情况下,当文本框获得焦点时便立刻失去,所以也无法手动修改其内容,能够模拟ReadOnly,在后台代码中也能通过Text属性,正常获取通过脚本在客户端设置的值;方法二:设置了ReadOnly属性后,通过Re...
分类:
Web程序 时间:
2014-06-03 08:01:30
阅读次数:
262
代码如下:using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Configuration;using System.Collections;using Syste...
分类:
其他好文 时间:
2014-06-03 07:38:59
阅读次数:
208
WebElement
接口常用方法:size,text,get_attribute(),is_displayed()
分类:
其他好文 时间:
2014-06-03 07:28:05
阅读次数:
188
Net中正则表达式的简单使用方法及常见验证判断判断字符串是只是数字我们可以这样写:return new
System.Text.RegularExpressions.Regex(@"^([0-9])[0-9]*(\.\w*)?$").IsMatch(strNumber);或者return
Syste...
分类:
Web程序 时间:
2014-06-03 05:38:27
阅读次数:
293
1.基础类TransferFiles,client和server都需要using
System;using System.Collections.Generic;using System.Text;using System.Net;using
System.Net.Sockets;using Sys...
分类:
其他好文 时间:
2014-06-03 05:37:01
阅读次数:
326
24小时制时间显示:public class Datetime { public static
void main(String args[]){ java.util.Date current=new java.util.Date();
java.text....
分类:
编程语言 时间:
2014-05-30 20:21:37
阅读次数:
357