摘要:
Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求,轻量级的独立的通讯技术。是:通过SOAP在Web上提供的软件(服务),使用WSDL文件进行(说明),并通过(UDDI)进行注册。XML:(E 阅读全文
摘要:
public List<T> Show1<T>(DataTable dt)where T : class, new() { List<T> list = new List<T>(); string ss = string.Empty; //获取类型 Type tp = typeof(T); //遍历 阅读全文