Making dotnetnuke skin

I created dotnetnuke. I have two files named index.ascx and index.html, which, as you know, index.ascx is created after parsing DNN.

Question: Do I still need index.html after the skin is parsed using dotnetnuke?

+3
source share
3 answers

You do not need the .html file on the web server, it is not used for anything after the skin has been converted to .ascx.

You probably want to save it on your local machine. It depends on how you plan to implement any changes to your skin. If you want to directly modify .ascx, you no longer need .html. If you want to make changes to .html and then restore .ascx, yes, of course, you still need to.

.ascx .html - , .

+3

html, . html , ASCX. , ,

+3

. HTML files usually help the skin designer. You can save it locally and open it in a regular browser to get an idea of ​​the layout. An .ascx file, on the other hand, is everything.

0
source

All Articles