摘要:
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... 阅读全文
2008年9月9日 #
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... 阅读全文
2008年8月25日 #
摘要:
1:找到安装文件C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplatesCache\Web\CSharp\2052\Class.zip 所在的目录。 2:更改里面的class文件,添加内容: /*--------------------------------------------------------- ... 阅读全文
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(); //并支持排序 阅读全文
2008年4月28日 #
摘要:
//加图片水印 System.Drawing.Image image = System.Drawing.Image.FromFile(path + picName); System.Drawing.Image watermakeImage = System.Drawing.Image.FromFile(CopyPicp... 阅读全文
2008年4月18日 #
摘要:
public class Cat { public string Name { get; set; } public int Age { get; set; } }class LightweightCustomer { public double TotalPurchases { get; set; } public string N... 阅读全文
2008年4月2日 #
摘要:
/// /// 截取字符串 /// /// /// /// public static string SubString(string stringToSub, int length) { Regex regex = new Regex("[\u4e00-\u9fa... 阅读全文
2008年3月26日 #
摘要:
[WebMethod(EnableSession=true)] 一定要标注EnableSession=true public string GetID() { return Session.SessionID; } 阅读全文