BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
<ej:RTE ID="ToolsSample" runat="server" >
<RTEContent>
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
</RTEContent>
</ej:RTE>
<input type="submit" value="submit" /> |
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) {
var RTEcontent = ToolsSample.Value; //access the value here using control’s ID
}
} |
Hello again,Thanks for your quick reply. After looking at your sample I realized I was missing ej.webform.min.js.After adding this to my solution, everything is working fine.Thanks!