Hi, All
I am using the following code for custom control. Aim is to populate this control through a Popup window's text field.
Page1: -
<CUSTOMCONTROL:RICHTEXTEDITOR id="RichTextEditor1" runat="server" Width="664px" Height="350px" BorderStyle="None" Text="" BackColor="#F4EFDE" HideInsertTable="true" HideInsertLink="true" HideInsertImage="true" HideInsertDate="true" HideBackgroundColor="true" HideAbout="true" HideToolBar3="true"></CUSTOMCONTROL:RICHTEXTEDITOR>
Popup Window: -
Response.Write("<script>" & vbCrLf)
Response.Write("alert(window.opener.document.getEl ementById('RichTextEditor1');")
Response.Write("window.close();")
Response.Write(vbCrLf & "</script>")
I am trying the above code but unable to get results.
Please Help me out. i Would be very thankful.
Regards,