Quantcast
Channel: AjaxControlToolkit Work Item Rss Feed
Viewing all articles
Browse latest Browse all 4356

Created Unassigned: ATC .NET 4.5 - doesn't work on my MSVS 2012 [27631]

$
0
0
Hello
Here is the case.
1. Downloaded .NET 4,5 package
2. Created Azure project with one webrole.
3. Added reference to AjaxControlToolki.dll
4. Added sanitizer and other stuff in web.config
5. Creating this page
```
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebRole1.WebForm1" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxtoolkit" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<ajaxtoolkit:ToolkitScriptManager ID="tsm1" runat="server" />


<asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine" />

<ajaxtoolkit:HtmlEditorExtender ID="HtmlEditorExtender1"
TargetControlID="TextBox1" DisplaySourceTab="true"
runat="server">
</ajaxtoolkit:HtmlEditorExtender>
</div>
</form>
</body>
</html>

```
6. Launched application and opened my web page - there is no html extander.
Project built under Debug|Any CPU. OS = Windows 7 x64. MS VS 2012.
What is wrong with it? How I can make it (ACT) working?

Viewing all articles
Browse latest Browse all 4356

Trending Articles