Click here to Skip to main content
15,890,506 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I am New for Asp.Net , Now I want to build CMS for One Page of Products e.g. NopCommerce's Product Page with 5 Products Page Layout.

I want to Enable admin for Insert Product Image with PDF File and When admin click add button Product add to Products Page.

I use Access with VS2008.

How to Build same?

How
Posted
Updated 8-May-12 19:41pm
v2

Try This Link Its may helps to you... Then Start to make your Own CMS System


Basic Content Management System with ASP.NET and MS Access[^]
 
Share this answer
 
 
Share this answer
 
What you have to do is create an interface (using asp.,net controls) where you can get the product data store it on xml/database and in product page retieve that data from source and display it.
 
Share this answer
 
Comments
s1a2b3 9-May-12 1:59am    
I stored Information into Database, How to Create or Retrive Data, Any Samples?
Neetesh Agarwal 26-Aug-15 11:05am    
In .aspx Page
<asp:DataList ID="dlEmployee" runat="server">
<itemtemplate>
<%#DataBinder.Eval(Container.DataItem, "test")%>

Neetesh Agarwal 26-Aug-15 11:07am    
In .CS Page

public void binddata()
{

string sql = "Select test from testt";
SqlDataAdapter sdr = new SqlDataAdapter(sql, con);

DataTable dt = new DataTable();
sdr.Fill(dt);



if (dt.Rows.Count > 0)
{
dlEmployee.DataSource = dt;
dlEmployee.DataBind();
}
}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900