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
Where to find User Interface or Code files
-
- Commander (CMDR)
- Posts: 121
- Joined: Wed Dec 17, 2008 9:13 am
Re: Where to find User Interface or Code files
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.
-
- Commander (CMDR)
- Posts: 121
- Joined: Wed Dec 17, 2008 9:13 am