asp.net:将 XML 从 Web 服务绑定到下拉列表

发布于 2024-09-10 07:14:51 字数 204 浏览 1 评论 0原文

如何绑定 xml (http://www.webservicex.net/country.asmx/GetCountries )到下拉列表?目前我正在使用 ASP.NET 2.0。

问候...

how do i bind a xml (http://www.webservicex.net/country.asmx/GetCountries) to a dropdownlist? Currently I'm working with ASP.NET 2.0.

Greetings...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吃素的狼 2024-09-17 07:14:51

谢谢马科,最后:

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim myGeoService As New net.webservicex.www.country
    Dim myISOcodes As String = myGeoService.GetCountries

    Dim reader As New System.IO.StringReader(myISOcodes)

    If Not Page.IsPostBack Then
        Dim mycountries As New DataSet
        mycountries.ReadXml(reader)
        DropDownList1.DataSource = mycountries
        'DropDownList1.DataValueField = "value"
        DropDownList1.DataTextField = "Name"
        DropDownList1.DataBind()
    End If

End Sub

thx Marko, finally:

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim myGeoService As New net.webservicex.www.country
    Dim myISOcodes As String = myGeoService.GetCountries

    Dim reader As New System.IO.StringReader(myISOcodes)

    If Not Page.IsPostBack Then
        Dim mycountries As New DataSet
        mycountries.ReadXml(reader)
        DropDownList1.DataSource = mycountries
        'DropDownList1.DataValueField = "value"
        DropDownList1.DataTextField = "Name"
        DropDownList1.DataBind()
    End If

End Sub
阳光的暖冬 2024-09-17 07:14:51

首先,从代码隐藏调用您的网络服务...
然后将从 Web 服务获取的 xml 绑定到下拉列表。
在此链接上,您可以了解如何执行此操作:

http://forums.asp.net/t/ 999571.aspx

干杯

First, call your web service from code behind...
Then bind xml that you get from a web service to a dropdown.
On this link you have how to do that:

http://forums.asp.net/t/999571.aspx

cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文