Click here to Skip to main content
15,901,796 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to add template in project using master page????
Posted
Comments
Karthik Harve 26-Apr-13 0:35am    
which template you are asking ? Not clear. Improve your question.
fak_farrukh 26-Apr-13 0:37am    
i have download a html template and now i want to add in my project

1 solution

steps:

1: Copy the image folder,(index,license,style) files from your downloaded folder

2: paste that things on your project in the solution explorer

3: open the index file in the solution explorer

4: copy the source code of the index.html in between <head> tag

<head>
//this code to be copied......
</head>

5: create master page

6: paste that source code instead of <title>Untitled Page</title> in the <head> tag of the master page

7: go to the index.html page and copy all the contents in the <body> tag

<body>
//content.....
</body>

8: paste the content into the inside of the
tag of <body> tag of master page

<body>

//paste here......

</body>

9: Now the template added to your project
 
Share this answer
 
v2

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