Edit:
I found a solution for Problem #1.
In the General.aspx file, it is using 
<%@ Page Language="C#" AutoEventWireup="true" Inherits="CMSModules_Content_CMSDesk_Properties_General"
    Theme="Default" MaintainScrollPositionOnPostback="true" Codebehind="General.aspx.cs"
    MasterPageFile="~/CMSMasterPages/UI/SimplePage.master" %>
I change 
Codebehind to 
CodeFile and now it works just fine on localhost
<%@ Page Language="C#" AutoEventWireup="true" Inherits="CMSModules_Content_CMSDesk_Properties_General"
    Theme="Default" MaintainScrollPositionOnPostback="true" CodeFile="General.aspx.cs"
    MasterPageFile="~/CMSMasterPages/UI/SimplePage.master" %>
I'm still having issues with the second problem though.  I will continue to research unless someone thinks they might have a solution.