Sun_china

交流更多,收获更多?

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页

2008年9月9日 #

摘要: CREATE PROCEDURE JOB_GETJOBCHANNEL--功能说明:根据站点ID获取招聘信息--创建者:SEY--日期:2008-09-08( @VSITEID INT,--站点ID @VTOPID INT --取top数)AS IF @VTOPID!='0'BEGIN EXEC('SELECT TOP '+@VTOPID+' J.JID,J.JMID,J.J... 阅读全文
posted @ 2008-09-09 08:40 Sun_china 阅读(1232) 评论(1) 推荐(0) 编辑

2008年9月3日 #

摘要: 1:datagrid string strSomeId=""; for(int index=0;index<dataGrid.Items.Count;index++) { if(this.dataGrid.Items[index].ItemType==ListItemType.AlternatingItem || this.dataGrid.Items[index].ItemTy... 阅读全文
posted @ 2008-09-03 08:54 Sun_china 阅读(532) 评论(0) 推荐(0) 编辑

2008年8月25日 #

摘要: 1:找到安装文件C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplatesCache\Web\CSharp\2052\Class.zip 所在的目录。 2:更改里面的class文件,添加内容: /*--------------------------------------------------------- ... 阅读全文
posted @ 2008-08-25 11:40 Sun_china 阅读(238) 评论(0) 推荐(0) 编辑

2008年8月5日 #

摘要: List L=new List(); Random random = new Random(); for (int i = 1; i <= 100; i++) { if (L.IndexOf(i) < 0) { L.Add(random.Next(1,100)); } } L.Reverse(); L.Sort(); //并支持排序 阅读全文
posted @ 2008-08-05 11:43 Sun_china 阅读(645) 评论(0) 推荐(0) 编辑

2008年4月28日 #

摘要: //加图片水印 System.Drawing.Image image = System.Drawing.Image.FromFile(path + picName); System.Drawing.Image watermakeImage = System.Drawing.Image.FromFile(CopyPicp... 阅读全文
posted @ 2008-04-28 11:07 Sun_china 阅读(458) 评论(0) 推荐(0) 编辑

2008年4月18日 #

只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2008-04-18 13:59 Sun_china 阅读(8) 评论(0) 推荐(0) 编辑

摘要: public class Cat { public string Name { get; set; } public int Age { get; set; } }class LightweightCustomer { public double TotalPurchases { get; set; } public string N... 阅读全文
posted @ 2008-04-18 13:43 Sun_china 阅读(1051) 评论(0) 推荐(0) 编辑

只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2008-04-18 13:41 Sun_china 阅读(13) 评论(0) 推荐(0) 编辑

2008年4月2日 #

摘要: /// /// 截取字符串 /// /// /// /// public static string SubString(string stringToSub, int length) { Regex regex = new Regex("[\u4e00-\u9fa... 阅读全文
posted @ 2008-04-02 14:35 Sun_china 阅读(251) 评论(0) 推荐(0) 编辑

2008年3月26日 #

摘要: [WebMethod(EnableSession=true)] 一定要标注EnableSession=true public string GetID() { return Session.SessionID; } 阅读全文
posted @ 2008-03-26 10:03 Sun_china 阅读(370) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页