Jan - Thank for the response.
I have changed the control name in the HTML as you suggest, however I still do not see the change.
Any other suggestions? Should the RESX file exist in a different directory?
As a test, I have dropped the resource file into the Store App_LocalResources along with the sites App_GlobalResources, but still no avail
Here is the Full HTML Code, along with the Resource File
ASCX
<%@ Control Language="c#" Codebehind="DefaultAddressAdmin.ascx.cs" Inherits="DotNetNuke.Modules.Store.Providers.Address.DefaultAddressProvider.DefaultAdmin"
AutoEventWireup="True" %>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<table cellspacing="5" width="80%" align="center" border="0">
<tr valign="top">
<td class="NormalBold" style="width: 150px; white-space: nowrap;">
<dnn:Label ID="lblShippingOptions" runat="server" ControlName="lblShippingOptions" Suffix=":">
</dnn:Label>
</td>
<td style="vertical-align: top;">
<asp:DropDownList ID="lstShippingOptions" runat="server" CssClass="Normal" AutoPostBack="False" />
</td>
</tr>
<tr valign="top">
<td class="NormalBold" style="vertical-align: top; width: 150px; white-space: nowrap;">
<dnn:Label ID="lblShippingWebService" runat="server" ControlName="txtShippingWebService"
Suffix=":" />
</td>
<td style="vertical-align: top;">
<asp:TextBox ID="txtShippingWebService" runat="server" CssClass="Normal" Width="100%" />
</td>
</tr>
<tr valign="top">
<td class="NormalBold" style="vertical-align: top; width: 150px; white-space: nowrap;">
<dnn:Label ID="lblDatabaseKey" runat="server" ControlName="txtDatabaseKey"
Suffix=":" />
</td>
<td style="vertical-align: top;">
<asp:TextBox ID="txtDatabaseKey" runat="server" CssClass="Normal" Width="100%" />
</td>
</tr>
<tr valign="top">
<td class="NormalBold" width="40%">
<dnn:Label ID="lblAllowAddBilling" runat="server" Suffix=":" ControlName="chkAllowAddBilling" />
</td>
<td class="Normal" width="60%">
<asp:CheckBox ID="chkAllowAddBilling" runat="server" />
</td>
</tr>
<tr valign="top">
<td class="NormalBold" width="40%">
<dnn:Label ID="lblAllowEditBilling" runat="server" Suffix=":" ControlName="chkAllowEditBilling" />
</td>
<td class="Normal" width="60%">
<asp:CheckBox ID="chkAllowEditBilling" runat="server" />
</td>
</tr>
<tr valign="top">
<td class="NormalBold" width="40%">
<dnn:Label ID="lblAllowAddShipping" runat="server" Suffix=":" ControlName="chkAllowAddShipping" />
</td>
<td class="Normal" width="60%">
<asp:CheckBox ID="chkAllowAddShipping" runat="server" />
</td>
</tr>
<tr valign="top">
<td class="NormalBold" width="40%">
<dnn:Label ID="lblAllowEditShipping" runat="server" Suffix=":" ControlName="chkAllowEditShipping" />
</td>
<td class="Normal" width="60%">
<asp:CheckBox ID="chkAllowEditShipping" runat="server" />
</td>
</tr>
<tr>
<td colspan="2" class="Normal">
<asp:LinkButton ID="btnSaveAddressSettings" runat="server" resourcekey="btnSaveAddressSettings">Update Address Settings</asp:LinkButton>
</td>
</tr>
</table>
Resource File
chkAllowAddBilling.Help This option is required to be set for the Standard Cart - False for Visual
chkAllowAddBilling.Text Allow NEW Billing Addresses
lblAllowAddBilling.Help This option is required to be set for the Standard Cart - False for Visual
lblAllowAddBilling.Text Allow NEW Billing Addresses
lblAllowAddShipping.Help This option will allow NEW Shipping Addresses
lblAllowAddShipping.Text Allow NEW Shipping Addresses
lblAllowEditBilling.Help This option is required to be set for the Standard Cart - False for Visual
lblAllowEditBilling.Text Allow Billing Address Edit
lblAllowEditShipping.Help Allow the user to EDIT existing Shipping Addresses
lblAllowEditShipping.Text Allow Shipping Address Edit
lblDatabaseKey.Help If using an external WebService, you must define a Trusted Macro Server Credentials Key (example: AA-11-A2-B5-B3-21-40-91-C3-3B-1F-F4-36-AB-4F-2D)
lblDatabaseKey.Text Credentials Key
lblShippingOptions.Help ffff
lblShippingOptions.Text aaa
lblShippingWebService.Help Define the URL to an External WebService to control the Address Information - WSDL Must meet WSDL - TBD
lblShippingWebService.Text WebService URL
lstShippingOptions.Help Select the Address Option - Visual requires a Valid WebService URL
lstShippingOptions.Text Address Option
Thanks again for the help – Paul