Rank: Newbie Groups: Member
Joined: 11/18/2010 Posts: 1
|
I download the control(eo.web control) I copied this file EO.Web.dll in /bin directory I add this lines in my aspx file
<%@ Assembly Src="bin/Demo.aspx.vb" %>
<script language="VB" runat="server"> </script>
I do not use masterpage like vs.net
and add the control like this
<asp:Content ID="Content1" ContentPlaceHolderID="demo" Runat="Server"> ... .... </asp:Content>
load the page and the message is this
Parser Error Message: Content controls have to be top-level controls in a content page or a nested master page that references a master page.
line: <asp:Content ID="Content1" ContentPlaceHolderID="demo" Runat="Server">
Any Idea what is wrong ?
Thank
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
That's totally wrong. : ) You will need to take a look of ASP.NET page structure in general. You probably copied the code from our sample but our sample uses a master page. If you are not familiar with ASP.NET, you may want to start without a master page.
ASP.NET is a huge topic so details about ASP.NET page syntax is beyond the scope of our support, however you should be able to find plenty of information online about how to create an ASP.NET page. Once you have an empty ASP.NET with a server form, you will just put our Calendar/DatePicker inside the form block and that's where our work/support begins. : )
Thanks!
|