I'm working with ASP.NET 2.0.5 using VS 2008.
Part of my application is a list that allows users to add/remove items ("modules") from its display. This list was originally titled the Shopping List, but this name has been changed to "Learning List". I have updated all references, button text, etc. to reflect the new name, but there are a few places where the change does not seem to be taking effect, and for the life of me I can't figure out why.
As an example, the code for the button that adds a module to the list also displays a message letting the user know that it has been done. The old code for this was:
protected void btnModuleAdd_Click(object sender, EventArgs e)
{
if (cbModuleAdd.Checked)
{
SaveModule(hidModId.Value);
lblMessage.Text = "<br/>Module successfully added to your Shopping List.";
...
Go to the complete details ...