컨텐츠를 수정하고 싶을때, 수정 위치 찾아보기

컨텐츠를 수정하고 싶을때, 수정 위치 찾아보기 – Case 가격표방식 상품목록 페이지

 

imageView

우선, “http://www.adbest.jp/Partner/08Adbest/list/list.aspx?Code=080’에 해당하는 소스를 찾아 봅니다.

 

imageView

FTP > list > list.aspx

 

 

해당 페이지의 반복구문은 아래와 같은 형태입니다.

imageView

 

이부분의 코딩은 foreach 구문 안에 있는 아래 태그들입니다.

imageView

 

위치별 구성요소를 나눠 보겠습니다.

imageView.

 

ⓐ : <img src=”http://<%=CommonUtil.GetChainShopInfo(Request) %>/<%=GoodsItem.ThumbnailImage%>” alt=”<%=GoodsItem.JPName %>” />

ⓑ : <h2><%=CategoryItem.JPName%></h2>

ⓒ : <p><%=RenderPartnerPageContents(GoodsItem.CodePath)%></p>

ⓓ : <span><%=SmallCategory.JPName%> ~ <%=GoodsPriceItem.SellUnit.MoneyType()%>枚 ¥<%=GoodsPriceItem.Price.MoneyType()%></span>

ⓔ : <a href=”/Product/Select/<%=SelectFile %>.aspx?Code=<%=GoodsItem.CodePath %>”>商品説明</a>

ⓕ : <a href=”/customerService/customerFile.aspx”>テンプレート</a>

ⓖ : <a href=”/Product/Select/<%=SelectFile %>.aspx?Code=<%=GoodsItem.CodePath %>&PriceDiv=true”>サイズ・価格表</a>

ⓗ : <a href=”/Product/Order?GoodsId=<%=GoodsItem.Id %>&CategoryCodePath=<%=GoodsItem.CodePath %>&SellUnit=1&ColorType=SELECT&PriceId=<%=GoodsItem.PriceId %>”>注⽂する</a>

여기서 게시판 컨텐츠로 연동된 부분은 ⓒ 영역으로 

이 상품을 클릭하면 다음과 같은 경로로 이동하게 됩니다.

“http://www.adbest.jp/Product/Order?GoodsId=48140&CategoryCodePath=080E01&SellUnit=1&ColorType=SELECT&PriceId=0” 

ⓒ 영역의 게시판 컨텐츠의 코드는 080E01가 됩니다. 

즉, 화면 구성을 수정하고자 하시면 list/list.aspx 파일을 직접 수정하시거나 css를 수정하시고

내용을 변경하고자 한다면 6자리 상품 카테고리 코드별로 컨텐츠를 작성하시면 됩니다.

 

위 상품의 게시판 컨텐츠는 관리자 페이지에서 선택 하셔서 수정하시면 됩니다.

imageView