En son web geliştirme öğreticiler
 

ASP.NET Web Formları - XML ​​dosyaları


Bir liste kontrolü için bir XML dosyası bağlayabilir.


Bir XML dosyası

İşte adında bir XML dosyasıdır "countries.xml" :

<?xml version="1.0" encoding="ISO-8859-1"?>

<countries>

<country>
  <text>Norway</text>
  <value>N</value>
</country>

<country>
  <text>Sweden</text>
  <value>S</value>
</country>

<country>
  <text>France</text>
  <value>F</value>
</country>

<country>
  <text>Italy</text>
  <value>I</value>
</country>

</countries>

XML dosyasına bir göz atın: countries.xml


Bir Liste denetimi için bir DataSet bağlayın

İlk olarak, ithal "System.Data" ad. Biz DataSet nesneleri ile çalışmak için bu ad gerekiyor. bir .aspx sayfanın en üstünde aşağıdaki yönergeyi ekleyin:

<%@ Import Namespace="System.Data" %>

Daha sonra, XML dosyası için bir DataSet oluşturmak ve sayfa ilk yüklendiğinde DataSet XML dosyası yüklemek:

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New DataSet
  mycountries.ReadXml(MapPath("countries.xml"))
end if
end sub

bir .aspx sayfası: RadioButtonList denetim DataSet bağlamak için, ilk (ListItem elemanları herhangi asp olmadan) RadioButtonList denetimi oluşturun:

<html>
<body>

<form runat="server">
<asp:RadioButtonList id="rb" runat="server" AutoPostBack="True" />
</form>

</body>
</html>

Sonra XML DataSet oluşturur komut dosyasını ekleyin:

<%@ Import Namespace="System.Data" %>

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New DataSet
  mycountries.ReadXml(MapPath("countries.xml"))
  rb.DataSource=mycountries
  rb.DataValueField="value"
  rb.DataTextField="text"
  rb.DataBind()
end if
end sub
</script>

<html>
<body>

<form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" onSelectedIndexChanged="displayMessage" />
</form>

</body>
</html>

Sonra kullanıcı RadioButtonList denetim bir öğenin üzerine tıkladığında bir alt rutin yürütülecek ekleyin. Bir radyo düğmesi tıklandığında, bir metin bir etiket olarak görünür:

Örnek

<%@ Import Namespace="System.Data" %>

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New DataSet
  mycountries.ReadXml(MapPath("countries.xml"))
  rb.DataSource=mycountries
  rb.DataValueField="value"
  rb.DataTextField="text"
  rb.DataBind()
end if
end sub

sub displayMessage(s as Object,e As EventArgs)
lbl1.text="Your favorite country is: " & rb.SelectedItem.Text
end sub
</script>

<html>
<body>

<form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" onSelectedIndexChanged="displayMessage" />
<p><asp:label id="lbl1" runat="server" /></p>
</form>

</body>
</html>
»Örnek göster