Rank: Newbie Groups: Member
Joined: 1/3/2017 Posts: 1
|
This register statement doesn't work. VS2015 says: "A space or line break was encountered after the "@" character. Only valid identifiers, keywords, comments, "(" and "{" are valid at the start of a code block and they must occur immediately following "@" with no space in between"; eliminating the space just causes another error.
I'd like to use your controls, but they appear to be dimmed-out, I.E. unavailable, after installation; why?
<%@ Register assembly="EO.Web" namespace="EO.Web" tagprefix="eo" %> <div class="jumbotron"> <p class="lead">Testing Site</p> </div> <br /> <div class="row"> <div id="tabs-container"> <eo:TabStrip id="ts1" runat="server" MultiPageID="mpVert" TabDefaultStyle="background-color:lightgreen;font-family:verdana; font-weight:bold;font-size:8pt;color:navy;width:79;height:21; text-align:center" TabHoverStyle="background-color:#ffd800" TabSelectedStyle="background-color:#ffffff;color:#000000" style="border: dotted 2px red !important;"> <eo:Tab Text="Page 2" id="tab1" style="min-width: 150px; width: 200px !important;">Page 2a</eo:Tab> <eo:Tab Text="Page 3" id="tab2" style="min-width: 150px; width: 200px !important;">Page 3a</eo:Tab> </eo:TabStrip> <eo:MultiPage id="mpVert" itemref="ts1" runat="server"> <eo:PageView itemref="tab1"> <p>This is TABS 1</p> </eo:PageView> <eo:PageView itemref="tab2"> <p>This is TABS 1</p> </eo:PageView> </eo:MultiP
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
We consider @register statement as basic ASP.NET syntax and we do not provide support on such issues. You can take a look of our sample project and compare your code with our sample code to see if you can find what caused the problem for you.
Thanks!
|