Hi there,
I am using telerik RadEditor like this in asp.net web application.
ASPX
ASPX.CS
Had set Image Paths from server side.
WEB.CONFIG
TELERIK ASSEMBLY VERSION : Version=2010.2.713.20
Giving me exception as Using themed css files requires a header control on the page. (e.g. <head runat="server" />). when clicked on Image Manager on editor. With web.config error message as
Web.config registration missing!
The Telerik dialogs require a HttpHandler registration in the web.config file. Please, use the control's Smart Tag to add the handler automatically, or see the help for more information: Controls > RadEditor > Dialogs > Introduction
Kindly help me to resolve the issue.
Regards,
Swapnil
I am using telerik RadEditor like this in asp.net web application.
ASPX
<
telerik:RadEditor
ID
=
"message"
runat
=
"server"
>
</
telerik:RadEditor
>
Had set Image Paths from server side.
string
[] imagepath = {
"../Images"
};
message.ImageManager.ViewPaths = imagepath;
message.ImageManager.UploadPaths = imagepath;
message.ImageManager.DeletePaths = imagepath;
message.ImageManager.EnableImageEditor =
false
;
WEB.CONFIG
<
add
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2010.2.713.20, Culture=neutral, PublicKeyToken=########"
verb
=
"*"
validate
=
"false"
/>
<
add
verb
=
"*"
path
=
"Telerik.Web.UI.DialogHandler.aspx"
type
=
"Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=########"
></
add
>
<
add
verb
=
"*"
path
=
"Telerik.Web.UI.SpellCheckHandler.axd"
type
=
"Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=########"
></
add
>
TELERIK ASSEMBLY VERSION : Version=2010.2.713.20
Giving me exception as Using themed css files requires a header control on the page. (e.g. <head runat="server" />). when clicked on Image Manager on editor. With web.config error message as
Web.config registration missing!
The Telerik dialogs require a HttpHandler registration in the web.config file. Please, use the control's Smart Tag to add the handler automatically, or see the help for more information: Controls > RadEditor > Dialogs > Introduction
Kindly help me to resolve the issue.
Regards,
Swapnil