|
Rank: Advanced Member Groups: Member
Joined: 8/2/2009 Posts: 39
|
Hi, I am trying to place my layout of the progress bar into my skin file, such as
Code: HTML/ASPX
<eo:ProgressBar SkinId="ProgressBar" runat="server"
BorderColor="#E2863D" IndicatorColor="#E2863D"
BorderStyle="Solid" BorderWidth="1px" Height="12px"
The aspx page is then
Code: HTML/ASPX
<eo:ProgressBar ID="ProgressBar1" runat="server"
Width="250px" StartTaskButton="buLoad"
ClientSideOnValueChanged="OnProgress"
SkinID="ProgressBar" />
But the compiler throws an error: Unknown servertag eo:ProgressBar Any help is welcome, thanks Peter
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I believe you need to use @Register to register the tag prefix in your skin file as you do with a regular ASP.NET page.
Thanks
|
|
Rank: Advanced Member Groups: Member
Joined: 8/2/2009 Posts: 39
|
Thanks for this superfast reply, this was it !
The compiler still throws an information saying (have to translate from german):
A skin was used, but the page is not configured for the use of page-designs or stylesheet-designs ...
This is nonsens, i have many other skins and css elements on the page.
Maybe you have an idea on this, otherwise i will stay with this.
Best regard Peter
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
|
|