摘要: string connStr = "Server=178.88.1.121;initial catalog=test;User=sa;password=abc.DB"; using (SqlConnection conn = new SqlConnection(connStr)) { SqlCommand command = new SqlCommand("select top 4 * from h_emp_mstr", conn); conn.Open(); DataSet ds = new DataSet(); ds.DataSetName = &q 阅读全文
posted @ 2012-06-08 14:52 Tom Fan 阅读(610) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.Mail;using System.Net.Mime;using System.IO;using System.Timers;using System.Xml;using System.Net;namespace TEST.SUBUNIT{ public class EmailHelper { public MailMessage mailMessage(string fr... 阅读全文
posted @ 2012-04-02 17:42 Tom Fan 阅读(936) 评论(0) 推荐(0) 编辑
摘要: 配置文件App.config内容如下:<?xml version="1.0" encoding="utf-8" ?><configuration> <appSettings> <add key="SZHOOA01" value="weareMIS" /> <!--0不定时,直接执行一次.1按指定STime时间执行,2按指定ITime时间间隔执行,3混合定时先按STime开始第一次执行后按ITime时间间隔执行--> <add key="Ty 阅读全文
posted @ 2012-04-01 10:15 Tom Fan 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text; using System.IO;namespace OpeartorFile{ /// <summary> /// 范小军 /// 用来学习向文件中追加字符的方法 /// </summary> class Program { static void Main(string[] args) { FileInfo fi = new FileInfo(... 阅读全文
posted @ 2012-04-01 10:03 Tom Fan 阅读(2589) 评论(0) 推荐(1) 编辑
摘要: string namespacestr="SKY.MODEL.UserModel";//命名空间 string methodname="GetValueByID";//方法名称 string str = namespacestr.Substring(0, namespacestr.LastIndexOf(".") ); //Type t = System.Type.GetType("SKY.MODEL.UserModel,SKY.MODEL"); try { Type t = System.Type.GetType 阅读全文
posted @ 2012-03-31 18:55 Tom Fan 阅读(229) 评论(0) 推荐(0) 编辑
摘要: [PropertyDescription("物料编号", ProperVlaue = "MATERIAL_ID", DefaultValue = "MaterialId")] public int MATERIAL_ID { get; set; }用来自定义属性的描叙信息,该属性信息可以通过反射获取,自定义的类如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using 阅读全文
posted @ 2012-03-08 19:35 Tom Fan 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 在做项目时,常常需要配置一些属性的,这就需要用到反射机制,下面是项目中常用到一些基本的放射方法:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.Collections;namespace SKY.DEFINITION{ /// <summary> /// 该类是用来实现反射的 /// 范小军 /// </summary> public class ReflectionAbou... 阅读全文
posted @ 2012-03-08 19:27 Tom Fan 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 需要从一个价格库表中,根据条件查询出相应的价格信息。价格库表结构如下:create table T_PriceLibrary( PLId int IDENTITY(1,1), --自价格库ID MaterialId int, --已报价物料Id SupplierId int, --已报价供应商Id PriceType int, --价格类型 Price decimal(13, 6), --... 阅读全文
posted @ 2012-03-08 19:16 Tom Fan 阅读(373) 评论(0) 推荐(0) 编辑
摘要: function getMainHead() { $("LabelWelcome").innerHTML = GetWelcomeByTime() + " 今天是:" + GetSimpleDate() + " " + GetWeekDay() + " " + GetCnDate() + SolarTerm(new Date()); }function GetWelcomeByTime() { var now = new Date(); var hour = now.getHours(); var hello = 阅读全文
posted @ 2011-06-30 18:43 Tom Fan 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 表示内存中数据的一个表。 命名空间:System.Data程序集:System.Data(在 system.data.dll 中)语法[SerializableAttribute] public class DataTable : MarshalByValueComponent, IListSource, ISupportInitializeNotification, ISupportInitialize, ISerializable, IXmlSerializable实例// Put the next line into the Declarations section.private Sy 阅读全文
posted @ 2011-06-30 11:10 Tom Fan 阅读(342) 评论(0) 推荐(1) 编辑