Welcome Guest Search | Active Topics | Sign In | Register

the eo web controls are not rendered Options
laur
Posted: Tuesday, April 22, 2008 10:00:22 AM
Rank: Member
Groups: Member

Joined: 11/26/2007
Posts: 11
Hello! The EO Web controls are not rendered anymore in my Visual Studio 2005 projects. I don't have any ideea why this is happenning?
eo_support
Posted: Tuesday, April 22, 2008 10:17:58 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
Hi,

If you have just added login feature to your website, then mostly it has to do with that. We rely on a file eo_web.ashx to render all JavaScript files that our controls use. If that file is only accessible to authenticated users, then our controls won't render when you are not logged. The solution is to modify your web.config file to allow anyone to access eo_web.ashx.

If that is not the case, you will want to find out what triggered it by comparing our demo project and your project, or a blank page with only our control and the page that is not working:

http://www.essentialobjects.com/Forum/Default.aspx?g=posts&t=1186

Thanks
laur
Posted: Tuesday, April 22, 2008 10:50:36 PM
Rank: Member
Groups: Member

Joined: 11/26/2007
Posts: 11
Hi again! It is quite strange..after creating a new web site project with a blank page with only the DatePicker control this runs ok, but, if i create a blank page in my actual project and load into it a DatePicker control, the rendering is wrong. The HTML code behind is identical and i've made eo_web.ashx available for all users..
<location path="~/eo_web.ashx">
<system.web>
<authorization>
<allow users="?" />
</authorization>

</system.web>
</location>
My interest is to use the datepicker control as an InsertItemTemplate in a DetailsView control,
eo_support
Posted: Wednesday, April 23, 2008 6:20:19 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
Using the DatePicker control as an InsertItemTemplate should be fine. We can setup an online meeting to take a look of your project in order to find out what's going on. Please let us know whether you are OK with that and what time would be convenient for you.
laur
Posted: Wednesday, April 23, 2008 8:15:22 AM
Rank: Member
Groups: Member

Joined: 11/26/2007
Posts: 11
Thanks! It's a very good idea you to take a look at my project. The question is what this 'online meeting' means?
It's no problem for me to give you acces to my project files, but the issue is I'm living in Romania so we should synchronize our schedules. I will leave u my email address: laur@lundin.fo and my Skype Id: neacsu.laurentiu.
Maybe we can book the 'online meeting' for tommorow, around 12.00 Central European Time, if this is ok for u. Of course, U can set a different hour, but please use the Central European Time for syncronization. Thanks again!
eo_support
Posted: Wednesday, April 23, 2008 8:22:08 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
We have one available now if you don't mind. The meeting link is sent to you through private messages, please click "Inbox" on the top of the forum to view the message.
eo_support
Posted: Wednesday, April 23, 2008 9:05:02 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
It has been noticed that:

Code: HTML/ASPX
<location path="~/eo_web.ashx">
    <system.web>
        <authorization>
            <allow users="?" />
        </authorization>
    </system.web>
</location>


Should be:

Code: HTML/ASPX
<location path="eo_web.ashx">
    <system.web>
        <authorization>
            <allow users="?" />
        </authorization>
    </system.web>
</location>


"~/" in front of eo_web.ashx should be removed.
Garry Wyder
Posted: Tuesday, December 6, 2011 7:58:46 AM
Rank: Newbie
Groups: Member

Joined: 9/14/2011
Posts: 1
I have the same problem, but what section do I put the above code in.
eo_support
Posted: Tuesday, December 6, 2011 8:15:45 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,088
Hi Garry,

Please see this MS documentation for more details:

http://msdn.microsoft.com/en-us/library/b6x6shw7.aspx

Thanks


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.