新人,数据库中的存储过程 如何在ASP 中使用~

新人求助,数据库中的存储过程 怎么在ASP 中使用~~
数据库中有两张表。
新人,数据库中的存储过程 如何在ASP 中使用~
新人,数据库中的存储过程 如何在ASP 中使用~

其中 用户表([User])中的UserID 和 申请信息表([Apply])中的 Approver,Assiger,Delaer 是一样的。

我想问下怎么在ASP 中使用存储过程  将 申请信息表中的 Approver,Assiger,Delaer 这三个字段换成 用户表 中的 Name。 

求大家帮忙啊~~!!

我用的是VS10 和 SQL server 08~~!!
存储 asp

------解决方案--------------------
http://www.cnblogs.com/ruiyi1987/archive/2009/03/25/1421213.html
http://blog.csdn.net/itblog/article/details/752869
http://blog.sina.com.cn/s/blog_707a4cbf0100ualx.html
------解决方案--------------------

use 数据库名
select isnull((select name from user where userid=Approver),'无') as Approver,
   isnull((select name from user where userid=Assiger),'无') as Assiger,
   isnull((select name from user where userid=Delaer),'无') as Delaer,
from Apply