1
Reply

how to add AjaxToolKit Editor example in Asp.Net c#

yadagiri uppari

yadagiri uppari

Jun 26 2013 6:03 AM
1.2k
Pls clarify iam not getting while running..

Aspx :
<head id="Head1" runat="server">
    <title>AjaxToolKit Editor in Asp.Net c#</title>
    <cc2:Editor runat="server">
    </cc2:Editor>
    
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div>
    <h2>AjaxToolKit Editor example in Asp.Net c#</h2>
   
    <p>
      
        <cc2:Editor ID="Editor1" runat="server" CssClass="htmleditor"/>
    <p>
        <asp:Button ID="Button1" runat="server" Text="Get Text" onclick="Button1_Click" 
            />
    </p>
    <p id="result" runat="server"></p>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    </div>
    </form>
</body>
</html>

Answers (1)