We have been using 6.1/VS2005/2.0 combination for a few years now with no problems. We just upgraded to VS10/4.0 and cutesoft 6.6. I created a new test web site project, added cuteeditor.*.dll to my bin folder, copied the Cutesoft_Client folder and ran the project. Page loads up and throws an error "error?" from some javascript alert. Below you can see my code (nothing much going on there). I will try and upload a picture of the error as well but it is just an IE window with editor in the background, no toolbar(s) and an alert box showing. Of course, when I dismiss the alert box editor is unresponsive. Any help would be appreciated.
<%
@ Page Language="VB" %>
<%
@ Register Assembly="CuteEditor" Namespace="CuteEditor" TagPrefix="CE" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml"><
head runat="server">
<title></title>
</
head>
<
body>
<form id="form1" runat="server">
<div>
<ce:editor id="Editor1" runat="server">
</ce:editor>
</div>
</form>
</
body>
</
html>
Goran