|
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?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
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=1186Thanks
|
|
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,
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
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.
|
|
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!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
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.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
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.
|
|
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.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Garry, Please see this MS documentation for more details: http://msdn.microsoft.com/en-us/library/b6x6shw7.aspxThanks
|
|