Asp.net 当地资源的位置

Asp.net 当地资源的位置,asp.net,resources,Asp.net,Resources,我的aspx文件中有以下代码: <asp:TextBox ID="tbEventName" runat="server" CssClass="required" Width="350px"></asp:TextBox><asp:RequiredFieldValidator runat="server" Display="None" ControlToValidate="tbEventName" ErrorMessage="<%$Resources:EventN

我的aspx文件中有以下代码:

<asp:TextBox ID="tbEventName" runat="server" CssClass="required" Width="350px"></asp:TextBox><asp:RequiredFieldValidator runat="server" Display="None" ControlToValidate="tbEventName" ErrorMessage="<%$Resources:EventNameMissing %>"></asp:RequiredFieldValidator>

现在我想编辑“EventNameMissing”,它似乎是一个本地资源。(资源已定义并包含字符串) 我通过编程调用
GetLocalResourceObject(“EventNameMissing”)验证了这一点,返回与我的aspx文件中相同的字符串

但是,我找不到字符串所在的文件。在我的解决方案资源管理器中有一个条目“App\u LocalResources”,但它是空的。
这些资源在哪里?

原来本地资源来自数据库。 Web.config中定义了以下配置:

<configSections>
    <section name="wwDbResourceProvider" type="Westwind.Globalization.wwDbResourceProviderSection" requirePermission="false" />
</configSections>