惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
G
Google Developers Blog
博客园 - Franky
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 【当耐特】
腾讯CDC
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
C
Check Point Blog
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

博客园 - tenero

【原创】CSSOO的思想及CSS框架的应用(未整理完) 验证码整理 (转)验证码 (转)VSS使用手册 c#基本关键字学习 Windows Vista 抢鲜中关于 wcf,wpf的介绍 windows mediaPlayer 图片切换(也适用其他插件的状态变化): windows_js_css WindowsMediaPlayer的常用属性和方法 随笔-记录 TiddlyWiki中文化 (网络收藏)WIKI Prototype文档解说--$ 基于StringTemplate的视图 Prototype.js介绍及扩展(待续) SSO-资料搜集 nodeType 从网络上搜索整理的 IMPORT功能函数 大量的使用用户自定义控件对web性能有什么影响?
WEBService学习
tenero · 2007-03-06 · via 博客园 - tenero

A: WEBService
1。创建WEBservice工程
工程编译后生成 : ddd.Service.DLL文件

2。在web中引用工程

添加引用:ddd.Service.Dll
在cs中

using System.Web.Services;
using ddd.Service;

添加Service对象
假如 dll中有类 users
则创建对象 users usersvc;

3。在函数中引用:
private void Btn1_Click()
{
usersvc= new Users();
string hello= usersvc.GetHello();
}

Ok