If you're not new to .Net as you say, then you ought to go down the custom aspx page with an aspx C# code behind page. If your pagename was called requestcatalog.aspx you might have the following as a starter for your requestcatalog.aspx.cs file:
Code:
using System;
using System.Web;
using System.Web.UI.WebControls;
using System.Data;
using System.Globalization;
using AspDotNetStorefrontCore;
using System.Data.SqlClient;
namespace AspDotNetStorefront
{
public partial class requestcatalog : SkinBase
{
protected void Page_Load(object sender, System.EventArgs e)
{
}
}
}
And your requestcatalog.aspx page might start like this:
Code:
<%@ Page language="c#" Inherits="AspDotNetStorefront.requestcatalog" Title="fsdf" CodeFile="requestcatalog.aspx.cs" %>
<%@ Register TagPrefix="aspdnsf" TagName="XmlPackage" src="XmlPackageControl.ascx" %>
<html>
<head>
</head>
<body>
</body>
</html>