Rank: Newbie Groups: Member
Joined: 1/26/2009 Posts: 2
|
I am trying to use SkinID="MEdit" for the eo:MaskedEdit control. Everytime I add the Skin File: MaskedEdit.skin to my project, it bombs out the rest of my skins.
I have tried the following in my skin:
<asp:MaskedEdit runat="server" /> <asp:MaskedEdit runat="server" SkinID="MEdit" BorderStyle="Solid" BorderColor="#85B2CC" BorderWidth="1px" BackColor="#CDDFE9" Font-Names="Calibri, Tahoma, Arial" CssClass="tboxindent" Height="16px" />
AND.....
<eo:MaskedEdit runat="server" /> <eo:MaskedEdit runat="server" SkinID="MEdit" BorderStyle="Solid" BorderColor="#85B2CC" BorderWidth="1px" BackColor="#CDDFE9" Font-Names="Calibri, Tahoma, Arial" CssClass="tboxindent" Height="16px" />
Neither works... I do not want to have to type all of these settings for every masked edit control (or any other eo control we use) in my web app.
Please help!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, The second form (with "eo" prefix) is the correct one. The only special thing is that you need to register this tagPrefix in your page by adding the following to the top of your skin file:
Code: HTML/ASPX
<%@ Register TagPrefix="eo" Namespace="EO.Web" Assembly="EO.Web" %>
Please let us know if that fixes the issue for you. Thanks!
|