Creating Custom Page Within AbleCommerce
-
- Lieutenant Commander (LCDR)
- Posts: 98
- Joined: Fri Apr 29, 2011 2:56 pm
Creating Custom Page Within AbleCommerce
I need to create a completely custom page within AbleCommerce in order to handle part of the integration that I'm working on. However, I can't create a page that will do what I need it to do using the built-in custom page creation function, and when I've tried adding in some custom pages I either get issues where it tells me the page can't be found, or I have troubles handling the codebehind file. I need to use a codebehind file to handle making the calls I need to make to my custom DLL file, but when I add in a file that uses a codebehind it always complains about not recognizing the namespace or some other annoying thing. Are there any templates out there for doing this, or does anyone have any useful tips for doing this? I really need to be able to pull data back from the other system into AbleCommerce in order to update certain things.
Re: Creating Custom Page Within AbleCommerce
I've attached a zip with a couple of template files. I'm assuming you want the basic look and feel of your site. Or hopefully they'll set you on the right path.
Template1.aspx/Template1.aspx.cs = These are using the one column master page. There's not really any content so you put whatever controls on the page you need and wire up the code behind as needed.
Template2.aspx/Template2.aspx.cs = These are going to give you the standard layout grid. As an admin, you'll get the standard view/edit page option at the bottom and you can define your layout. With this template you'll need to create scriptlets or conlibs to hold the content.
Does this get you started?
Template1.aspx/Template1.aspx.cs = These are using the one column master page. There's not really any content so you put whatever controls on the page you need and wire up the code behind as needed.
Template2.aspx/Template2.aspx.cs = These are going to give you the standard layout grid. As an admin, you'll get the standard view/edit page option at the bottom and you can define your layout. With this template you'll need to create scriptlets or conlibs to hold the content.
Does this get you started?
-
- Lieutenant Commander (LCDR)
- Posts: 98
- Joined: Fri Apr 29, 2011 2:56 pm
Re: Creating Custom Page Within AbleCommerce
This may be just what I'm looking for. Thank you. =D I'll be working on getting done what I need to accomplish and see what happens.