I want to create a new page - not a new content topic - but a new page that will take on the look of the site. I need to write my own code in the CodeFile.
Does anyone know how to do this?
Thanks in advance!
I want to create a new page - not a new content topic - but a new page that will take on the look of the site. I need to write my own code in the CodeFile.
Does anyone know how to do this?
Thanks in advance!
Does anyone know how to do this?
If you mean a new aspx page then create the new files.
(.aspx and .aspx.cs)
in the .aspx.cs file
and head of your .aspx pageC#/VB.NET Code:
using AspDotNetStorefrontCore;
namespace AspDotNetStorefront
{
public partial class filenamehere : SkinBase
{
}
}
Hope that helpsC#/VB.NET Code:
<%@ Page language="c#" Inherits="AspDotNetStorefront.filenamehere" CodeFile="filenamehere.aspx.cs" %>
<%@ Register TagPrefix="aspdnsf" TagName="Topic" src="TopicControl.ascx" %>
=====
Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
Execution Mode: 64 Bit
Dot Net Developments - E-commerce By Experience
I'm using version 9.1. It seems all the pages are implemented through user controls. With the above solution, I'm getting error. Does ot work for you?![]()
I have not used ver 9+, my method is for versions 8 and below.
=====
Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
Execution Mode: 64 Bit
Dot Net Developments - E-commerce By Experience
Here's the V9 version:
The .aspx page (mypage.aspx):
The supporting .aspx.cs code (mypage.aspx.cs) which is the same:Code:<%@ Page Language="c#" Inherits="AspDotNetStorefront.mypage" CodeFile="mypage.aspx.cs" MasterPageFile="~/App_Templates/skin_1/template.master" %> <asp:Content ID="Content1" runat="server" ContentPlaceHolderID="PageContent"> Some content here </asp:Content>
Code:using AspDotNetStorefrontCore; namespace AspDotNetStorefront { public partial class mypage : SkinBase { } }
Webopius.com: ASPDotNetStorefront web development and ecommerce project management
Webopius is now a Sage Pay Approved Partner
Its still not working. I have a hyperlink on my homepage linking to my new created page. But when I click that link it cannot find that page. Do we need to build or compile? Its on my developing machine.
If the modifications are within the code-behind pages, you don't need to recompile it unless it's in the Aspdnsf projects. Tell us how were you calling the *new page* in the hom page. Were you using an <a href> tag or response.redirect?
Yes, First I created a new aspx page in my root directory. Then I created an <a href> link to that page. When I click on link, page is redirected to some error handling page. It appears to me that all aspx pages are implemented through ascx controls. Do I have to create an ascx file and register it in my page?