BoldDesk®Customer service software with ticketing, live chat & omnichannel support, starting at $99/mo for unlimited 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!