webxml.ChinaStockWebService ws = new webxml.ChinaStockWebService()
Response.Write(ws.getStockInfoByCode("sh601857")[1])//参数可以用get方式传递,我为了省事写死了,取得返回的数组的第一个元素,也就是股票名称
Response.End()
取股票名称的页面,使用ajax调用:
<script type="text/javascript">
$(function()
{
$("#btnAjaxGet").click(function(event)
{
$("#divResult").load("AjaxTest.aspx")
})
})
</script>
<button id="btnAjaxGet">取股票信息</button><br />
<div id="divResult" style="border:1px solid redwidth:200pxheight:20px"></div>
使用system.net下HttpWebRequest 和HttpWebResponse 就能完成你的需求。1、你直接请求sina的页面。
2、通过对返回的字符串(或者document对象)进行分析,能够取到相应的数据。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)