Hi
Why not keep it as an .aspx page and use ASPDotNetStorefront for the skinning?
If you are on V9, this code model should work.
MyMaps.aspx:
Code:
<%@ Page Language="c#" Inherits="AspDotNetStorefront.mymaps" CodeFile="mymaps.aspx.cs" MasterPageFile="~/App_Templates/skin_1/template.master" %>
<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="PageContent">
Your maps page elements here
</asp:Content>
MyMaps.aspx.cs:
Code:
using AspDotNetStorefrontCore;
namespace AspDotNetStorefront
{
public partial class mymaps : SkinBase
{
// Your maps code here
}
}