Where to find User Interface or Code files

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
Carolharry
Commander (CMDR)
Commander (CMDR)
Posts: 121
Joined: Wed Dec 17, 2008 9:13 am

Where to find User Interface or Code files

Post by Carolharry » Fri Feb 13, 2009 10:09 am

Hi,

I am having difficulty in finding userinterface or codefiles easily.
for example: I want to see code in basket.aspx. when I go there I only see
<%@ Page Language="C#" MasterPageFile="~/Layouts/Scriptlet.master" Inherits="CommerceBuilder.Web.UI.AbleCommercePage" Title="Basket" %>
<%@ Register Assembly="CommerceBuilder.Web" Namespace="CommerceBuilder.Web.UI.WebControls.WebParts" TagPrefix="cb" %>
<asp:Content ID="ScriptletContent" ContentPlaceHolderID="PageContent" Runat="Server">
<cb:ScriptletPart ID="Basket" runat="server" Layout="Right Sidebar" Header="Standard Header" Content="Basket" Sidebar="Basket Bar 1" Footer="Standard Footer" Title="Show Basket" AllowClose="False" AllowMinimize="false" />
</asp:Content>


Sure this page has user controls. I am having difficulty in finding out what user controls are used. For some customizations I need to change user interface a little bit. For that I am having difficult to find original file where say table was added to basket.aspx,checkout button was added.

Can anyone please tell me easiest way to find related controls used for a particular page.

Thank you all in advance.
Carol

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Where to find User Interface or Code files

Post by mazhar » Fri Feb 13, 2009 10:22 am

You can find the control names in scriptlets. So first check the scriptlet name from page. For example if you are editing the Basket.aspx and want to check the control in its contents section then check its content scriptlet. You will find the control names there in [[ConLib:ControlName]] fashion.

Carolharry
Commander (CMDR)
Commander (CMDR)
Posts: 121
Joined: Wed Dec 17, 2008 9:13 am

Re: Where to find User Interface or Code files

Post by Carolharry » Fri Feb 13, 2009 10:40 am

Thank you.

Post Reply