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

推荐订阅源

Simon Willison's Weblog
Simon Willison's Weblog
Help Net Security
Help Net Security
P
Privacy International News Feed
T
Threat Research - Cisco Blogs
C
Cisco Blogs
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
L
LINUX DO - 热门话题
Security Latest
Security Latest
A
Arctic Wolf
G
GRAHAM CLULEY
月光博客
月光博客
S
Securelist
D
Docker
J
Java Code Geeks
T
Troy Hunt's Blog
T
Tenable Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
SecWiki News
SecWiki News
S
Security @ Cisco Blogs
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LINUX DO - 最新话题
Recent Commits to openclaw:main
Recent Commits to openclaw:main
aimingoo的专栏
aimingoo的专栏
博客园 - 【当耐特】
H
Heimdal Security Blog
The Hacker News
The Hacker News
博客园 - 三生石上(FineUI控件)
Application and Cybersecurity Blog
Application and Cybersecurity Blog
N
Netflix TechBlog - Medium
Vercel News
Vercel News
Forbes - Security
Forbes - Security
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
B
Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
S
Secure Thoughts
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
C
Check Point Blog
云风的 BLOG
云风的 BLOG
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Blog of Author Tim Ferriss
L
Lohrmann on Cybersecurity
F
Full Disclosure
D
Darknet – Hacking Tools, Hacker News & Cyber Security
P
Proofpoint News Feed

博客园 - XMLTea

马云语录 十个看完,九个有领悟 定位与口才的思维图 高效经理人的8个思维原则 TreeView控件经验汇总 无为而治的现代思考 Canon A620 首航 比爾·蓋次給年輕人的十一個建議 可怜的男人! ASP.net2.0学习资料汇总 今天在X2Blog上开张了! Web Service“四长两短” [ASP.NET] Session 详解 JAVASCRIPT加密解密终级指南 Javascript 常用函数库 AJAX / 概况(First Step Study For AJAX) [豪门恩怨] 奥迪A6L 宝马530i 奔驰E320 XMLHTTP / 核心技术介绍 (Second Step Study For AJAX) 掌握ADO.NET的十个热门技巧
Atlas调用Web Service时为dataSource指定方法和参数
XMLTea · 2006-08-21 · via 博客园 - XMLTea

1.在页面中加入:

     <asp:TextBox ID="pName" runat="server" Text="Love"></asp:TextBox>

2.在Atlas脚本中加入:

      <textBox id="pName" visible="false"/>

     <dataSource id="listDataSource" autoLoad="true" serviceURL="MyService.asmx" loadMethod="GetListData" >

         <bindings>

         <binding dataContext="pName"  dataPath="text" property="parameters" propertyKey="name" direction="In"/>

          </bindings>

     </dataSource>

    注:其中loadMethod指定Web Service中要调用的方法,binding 绑定相关参数。textBox 的visible属性设置为false时,参数对应的输入框被隐藏!