上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 61 下一页
摘要: 操作步骤:1。新建一个WebApplication项目,取默认设置。2。双击设计界面,进入后天代码编辑界面,代码如下:?1234567891011121314151617181920212223using System;using System.Web.Services;namespace WebApplication1{ public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } [WebMethod] public static s 阅读全文
posted @ 2013-02-27 13:22 Seaurl 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 新公司环境不错,加油干吧! 阅读全文
posted @ 2013-02-26 11:33 Seaurl 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 2013-2-7合肥大雪,怎么回家啊! 阅读全文
posted @ 2013-02-05 09:49 Seaurl 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 原文作者:http://ext4all.com/post/ext4-monthfield-with-month-picker-for-extjs4某论坛弄下来的,。原文如下:我也来发一个年月选择控件,因为某些场合只需要年份和月份信息,直接使用日期控件,虽然能通过format等方式可以得到,但是还要选择日期才能完成输 入,比较麻烦,在网上找了一下,搜索到两个,都是2.x版的;于是就自己动手写一个,在4.1版中测试通过。给需要的朋友,效果如下图:按 Ctrl+C 复制代码MonthField.jsExt.define('Ext.ux.form.MonthField', { exte 阅读全文
posted @ 2013-01-25 14:21 Seaurl 阅读(7826) 评论(0) 推荐(0) 编辑
摘要: sql1:1 select sfwb2 from tab_jxgd运行:sql2:1 select (CASE sfwb WHEN 'y' THEN '是' ELSE '否' END) sfwb2 from tab_jxgd运行:1 1.select * from t_meetting_application t where to_date('2010-10-27 10:30:00', 'yyyy-mm-dd hh24:mi:ss') between t.starttime and t.endtime2.selec 阅读全文
posted @ 2013-01-14 16:08 Seaurl 阅读(4381) 评论(0) 推荐(0) 编辑
摘要: 新的一年,新的开始! 阅读全文
posted @ 2013-01-01 17:58 Seaurl 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 直接贴代码: 1 using System; 2 using System.Data; 3 using System.Text; 4 using System.Collections.Generic; 5 using System.Reflection; 6 7 namespace PowerCheck.Tools 8 { 9 10 public class ToJson 11 { 12 public ToJson() 13 { 14 15 } 16 public static string... 阅读全文
posted @ 2012-12-28 14:08 Seaurl 阅读(675) 评论(0) 推荐(0) 编辑
摘要: 比如我们有新闻页:/news/readmore.php?id=4875我们要做成静态页:/news/top2007,4875.html一 打开 apache 的配置文件 httpd.conf 。二 将#loadmodule rewrite_module modules/mod_rewrite前面的#去掉三 在 httpd.conf中添加:<ifmodule mod_rewrite.c>RewriteEngine OnRewriteRule /news/top2007,(\d+).html$ /news/readmore\.php\?id=$1</ifmodule>转:h 阅读全文
posted @ 2012-12-28 10:05 Seaurl 阅读(359) 评论(0) 推荐(0) 编辑
摘要: gantt.js 1 /// 2 Ext.ns('App'); 3 4 var dateNow = new Date(); 5 var yearNow = dateNow.getFullYear(); 6 var monthNow = 0; 7 var dayNow = 1; 8 //Ext.Loader.setConfig({enabled: true, disableCaching : false }); 9 //Ext.Loader.setPath('Sch', 'http://www.cnblogs.com/../ExtScheduler2.x/ 阅读全文
posted @ 2012-12-27 17:31 Seaurl 阅读(3313) 评论(5) 推荐(1) 编辑
摘要: 1.Ext.MessageBox.alert()方法 有四个参数,为简单起见,主要介绍前面三个参数:alert( title , msg , function(){} )其中title,msg为必选参数,function为可选参数,在关闭弹出窗口后触发。Ext.MessageBox.alert("title","msg");Ext.MessageBox.alert("title","msg",function(){alert("关闭对话框后弹出!")});2.Ext.MessageBox.con 阅读全文
posted @ 2012-12-25 17:11 Seaurl 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 61 下一页