or
<Content> <div id="textContainer" contenteditable="false" unselectable="on"> <div id="paddingContainer" contenteditable="false" unselectable="on"> <div id="classifiedArea" contenteditable="true" unselectable="off"> </div></div></div></Content><div id="textContainer" contenteditable="false" unselectable="on"> <div id="paddingContainer" contenteditable="false" unselectable="on"> <div id="classifiedArea" contenteditable="true" unselectable="off" style="width: 172.8px; font-family: HELVETICA; font-size: 14px; line-height: 22px; min-height: 22px;">Line 1<br>Line 2<br>Etc</div></div></div><!-- End --><div id="textContainer" contenteditable="false" unselectable="on"> <div id="paddingContainer" contenteditable="false" unselectable="on"> <div id="classifiedArea" contenteditable="true" unselectable="off" style="width: 172.8px; font-family: HELVETICA; font-size: 14px; line-height: 22px; min-height: 22px;">Line 1</div><p id="classifiedArea" contenteditable="true" unselectable="off" style="width: 172.8px; font-family: HELVETICA; font-size: 14px; line-height: 22px; min-height: 22px;">Line 2</p><p id="classifiedArea" contenteditable="true" unselectable="off" style="width: 172.8px; font-family: HELVETICA; font-size: 14px; line-height: 22px; min-height: 22px;">Line 3</p></div></div>protected void Page_Load(object sender, EventArgs e){ if (!IsPostBack) { string[] viewPaths = new string[] { @"C:\Test2", @"\\CHRISTIAN_KING2\Test1" }; RadFileExplorer1.Configuration.ViewPaths = viewPaths; }}protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { lblURL.Style.Add("display", "none"); txtURL.Style.Add("display", "none"); lblUpload.Style.Add("display", "none"); uplAttachment.Style.Add("display", "none"); lblFileName.Style.Add("display", "none"); lblFileNameValue.Style.Add("display", "none"); optAttachment.Checked = false; optURL.Checked = false; optNone.Checked = true; taskID = Request.QueryString["taskID"].ToString(); txtTaskID.Text = taskID; } }<tr> <td class="templateLabel"> runat="server" Text="Link:"></asp:Label> <asp:Label ID="lblFileName" ToolTip="File Name of last upload" runat="server" Text="File Name:"></asp:Label> </td> <td class="templateValue"> <telerik:RadTextBox ID="txtURL" MaxLength="300" runat="server" EmptyMessage="Specify a link (must start with http:// or https://)" Width="450px" Enabled='<%# (Boolean)Session["EditProcess"] %>'> </telerik:RadTextBox> <asp:Label ID="lblFileNameValue" Text="File Name goes here" ToolTip="File Name of last upload" runat="server"></asp:Label> </td> </tr><tr> <td class="templateLabel"> <asp:Label ID="lblAttachmentType" runat="server" Text="Reference:"></asp:Label> </td> <td class="templateValue"> <telerik:RadButton runat="server" AutoPostBack="False" Enabled='<%# (Boolean)Session["EditProcess"] %>' ID="optAttachment" ButtonType="ToggleButton" ToggleType="Radio" GroupName="urlOrAtt" Text="File" Value="attachment" OnClientCheckedChanged="optAttachment_CheckedChanged"></telerik:RadButton> <telerik:RadButton runat="server" AutoPostBack="False" Enabled='<%# (Boolean)Session["EditProcess"] %>' ID="optURL" ButtonType="ToggleButton" ToggleType="Radio" GroupName="urlOrAtt" Text="Link" Value="url" OnClientCheckedChanged="optUrL_CheckedChanged"></telerik:RadButton> <telerik:RadButton runat="server" AutoPostBack="False" Enabled='<%# (Boolean)Session["EditProcess"] %>' ID="optNone" ButtonType="ToggleButton" ToggleType="Radio" GroupName="urlOrAtt" Text="None" Value="none" OnClientCheckedChanged="optNone_CheckedChanged"></telerik:RadButton> </td></tr>function optUrL_CheckedChanged(sender, eventArgs) { if (!g_rowSelected) { if (sender.get_checked()) { alert('Link selected'); //var txtURL = $find("<%=txtURL.ClientID%>"); //txtURL.clear(); //txtURL.set_visible(true); document.getElementById('<%= txtURL.ClientID %>').style.display = 'block'; document.getElementById('<%= lblURL.ClientID %>').style.display = 'block'; $find("<%=uplAttachment.ClientID%>").set_visible(false); document.getElementById('<%= lblUpload.ClientID %>').style.display = 'none'; document.getElementById('<%= lblFileName.ClientID %>').style.display = 'none'; document.getElementById('<%= lblFileNameValue.ClientID %>').style.display = 'none'; } EnableSave(); } } function optAttachment_CheckedChanged(sender, eventArgs) { if (!g_rowSelected) { if (sender.get_checked()) { alert('File selected'); var txtURL = $find("<%=txtURL.ClientID%>"); txtURL.clear(); txtURL.set_visible(false); document.getElementById('<%= lblURL.ClientID %>').style.display = 'none'; $find("<%=uplAttachment.ClientID%>").set_visible(true); document.getElementById('<%= lblUpload.ClientID %>').style.display = 'block'; document.getElementById('<%= lblFileName.ClientID %>').style.display = 'block'; document.getElementById('<%= lblFileNameValue.ClientID %>').style.display = 'block'; } EnableSave(); } } function optNone_CheckedChanged(sender, eventArgs) { if (!g_rowSelected) { if (sender.get_checked()) { alert('None selected'); var txtURL = $find("<%=txtURL.ClientID%>"); txtURL.clear(); txtURL.set_visible(false); document.getElementById('<%= lblURL.ClientID %>').style.display = 'none'; $find("<%=uplAttachment.ClientID%>").set_visible(false); document.getElementById('<%= lblUpload.ClientID %>').style.display = 'none'; document.getElementById('<%= lblFileName.ClientID %>').style.display = 'none'; document.getElementById('<%= lblFileNameValue.ClientID %>').style.display = 'none'; } EnableSave(); } }