jquery获得下拉框值的代码获取Select :获取select 选中的 text
:$("#ddlRegType").find("option:selected").text();获取select选中的
value:$("#ddlRegType ").val();获取select选中的索引:$(...
分类:
Web程序 时间:
2014-05-27 02:38:48
阅读次数:
270
原文:http://www.crifan.com/csharp_call_explorer_to_open_destinate_folder_and_select_specific_file/C#中调用资源管理器(Explorer.exe)打开指定文件夹
+ 并选中指定文件 + 调用(系统默认的播放...
分类:
其他好文 时间:
2014-05-27 02:27:53
阅读次数:
496
Sql Server 中一个非常强大的日期格式化函数Select
CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AMSelect
CONVERT(varchar(100), GETDATE(), 1): 05/16/06Select CON...
分类:
数据库 时间:
2014-05-24 07:01:14
阅读次数:
379
Mysql limit
offset假设数据库表student存在13条数据。语句1:select * from student limit 9,4语句2:slect * from
student limit 4 offset 9// 语句1和2均返回表student的第10、11、12、13行//...
分类:
数据库 时间:
2014-05-24 06:10:51
阅读次数:
351
以下为代码示例:全局变量: List CategoryList =
PCS.DAL.EF.Repository.GetInstance().GetCategoryList(); List V_BTUser_Category =
PCS.DAL.EF.Repository.GetInstance()....
分类:
其他好文 时间:
2014-05-24 05:38:09
阅读次数:
303
$pagesize){if($pagevel上一页"."下一页";}$sql="select*frommessagelimit$page,$pagesize";$query=mysql_query($sql);while($row=mysql_fetch_array($query)){echo""....
分类:
Web程序 时间:
2014-05-24 02:34:28
阅读次数:
393
Group
By/Having操作符适用场景:分组数据,为我们查找数据缩小范围。说明:分配并返回对传入参数进行分组操作后的可枚举对象。分组;延迟1.简单形式:var q =
from p in db.Products group p by p.CategoryID into g select g;语...
分类:
数据库 时间:
2014-05-20 07:48:14
阅读次数:
531
比较经典一个课程学分表C(cno, cname, ccredit)一个学生选课表SC(sno,
cno, grade)select sno from sc,c where sc.cno=c.sno and sc.grade>=60 group by
sno having sum(credit)>=3...
分类:
其他好文 时间:
2014-05-19 17:06:41
阅读次数:
218
FileChannel是flume一个非常重要的channel组件,非常常用。这个channel非常复杂,涉及的文件更多涉及三个包:org.apache.flume.channel.file、org.apache.flume.channel.file.encryption(加密)、org.apa.....
分类:
其他好文 时间:
2014-05-19 13:02:06
阅读次数:
285