Hi. why I cant access to literal in behind Code of my asp.net page?
<%@ Page Title="" Language="VB" MasterPageFile="~/UI/Masters/Window.master" AutoEventWireup="false" CodeFile="HelpViewer.aspx.vb" Inherits="UI_Pages_HelpViewer" culture="auto" meta:resourcekey="PageResource1" uiculture="auto" %>
<asp:Content ID="Content1" ContentPlaceHolderID="c" Runat="Server">
<%--<div dir="rtl">
<asp:Panel ID="Panel1" Height="270px" Width="100%" ScrollBars="Auto"
runat="server" meta:resourcekey="Panel1Resource1">
<asp:Literal ID="Literal1" runat="server" meta:resourceKey="Literal1Resource1"></asp:Literal>
</asp:Panel>
</div>--%>
<div dir="rtl" align="right">
<asp:Repeater ID="rptHelp" runat="server" DataSourceID="xmlHelp">
<ItemTemplate>
<div style ="font-size:12px; font-family :Tahoma; font-weight:bold; margin-left:5px; color:Green; ">
<asp:Literal ID="ltlTitle" runat="server" Text='<%#XPath("title")%>'></asp:Literal>
</div>
<div style="font-size:11px;margin-bottom:10px; margin-left:12px; margin-right:4px; font-family:Tahoma ; margin-top:9px;">
<asp:Literal ID="ltlText" runat="server" Text='<%#XPath("text")%>'></asp:Literal>
</div>
</ItemTemplate>
</asp:Repeater>
<asp:XmlDataSource ID="xmlHelp" runat="server"></asp:XmlDataSource>
</div>
</asp:Content>
ltlText is unknown element in behind code.