cvboucher
Posts: 191
|
| Posted: 10/06/2011, 9:53 AM |
|
I have an ASP.Net VB InMotion project that was originally created with the Dynamically Modify Styles checkbox unchecked. Now I want to use that feature so I checked the checkbox and on an existing page I right clicked on the page, selected Change Style, and selected (Dynamic). In the Project Settings I also set one of the styles to default.
The source code in HTML view shows the following:
<link rel="stylesheet" type="text/css" href="../Styles/{CCS_Style}/Style_doctype.css">
I did a full publish of the project but when I go to the page there is no style. If I vew source from IE I see the following:
<link rel="stylesheet" type="text/css" href="../Styles/<%=StyleName%>/Style_doctype.css" />
Now if I create a new page everything works as it is supposed to. What do I need to do to get the dynamically modify styles to work on existing pages?
Thanks,
Craig
|