<asp:textbox ID="txtXML" runat="server" Rows="10" TextMode="MultiLine" Width="465px"><?xml version="1.0" encoding="utf-8" ?>
<AccessModifiers>
<modifier name="public">
<desc>The member or type is fully accessible.</desc>
</modifier>
<modifier name="internal">
<desc>The member or type is accessible from within its assembly</desc>
</modifier>
<modifier name="private">
<desc>The member or type is only accessible from within the enclosing type</desc>
</modifier>
<modifier name="protected">
<desc>The member or type is only accessible from within the enclosing class or a class that inherits from the enclosing class</desc>
</modifier>
<modifier name="protected internal">
<desc>The member or type is only accessible from within the enclosing class or a class that inherits from the enclosing class or from within its assembly</desc>
</modifier>
</AccessModifiers>
</asp:textbox><br />
<asp:button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" Text="Submit" />
<asp:XmlDataSource ID="xmlDS" runat="server" XPath="AccessModifiers/modifier" EnableCaching="False"></asp:XmlDataSource>
<asp:label ID="lblStatus" runat="server"></asp:label></td>
</tr>