or
EmployeeDetailsCS.ascx
contains two list boxes with server side events (something like that: http://demos.telerik.com/aspnet-ajax/listbox/examples/serverside/serverevents/defaultcs.aspx). List boxes have have as a datasouce two list (let's say "employeeTasks" and "allTasks"), and every time i transferr an item those lists are updated and the database is updated too. I can't make a refresh to this "user control edit form" every time an item is transfered, to be able to see the new "content" of two lists. Any ideea how to do this?
1) Installing RadControls from ZIP file
using System.Web.UI;
using Telerik.Web.UI;
when I add the controls (this.Controls.Add(this.radEditor))the attached error appears.
Question: What exactly I need to do to start using RadControls?
Thank you for your help
<
telerik:RadEditor
runat
=
"server"
ID
=
"RadEditor1"
>
<
CssFiles
>
<
telerik:EditorCssFile
Value
=
"~/ExternalCssFiles/Styles1.css"
/>
<
telerik:EditorCssFile
Value
=
"~/ExternalCssFiles/Styles2.css"
/>
</
CssFiles
>
</
telerik:RadEditor
>
<
telerik:RadEditor
runat
=
"server"
ID
=
"RadEditor1"
>
<
CssFiles
>
<
telerik:EditorCssFile
Value
=
"http://www.mysite.com/styles/Styles1.css"
/>
<
telerik:EditorCssFile
Value
=
"http://www.mysite.com/styles/Styles2.css"
/>
</
CssFiles
>
</
telerik:RadEditor
>
var sb = new StringBuilder();
var collection = ddlAdditionalStaff.CheckedItems;
foreach (var item in collection)
sb.Append(item.Value + "|");