Creating a text editor ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hellboss
    New Member
    • Jun 2007
    • 50

    Creating a text editor ?

    Hi every one , iam working wit asp.net vs05,i need to built a editor to view the document. the editor should be similar to that of the message area in your site http://www.thescripts.com/forum/newt...ewthread&f=131,

    if there is a better editor with minimal functional it would serve my purpose

    My other question is, Can we use rich text box in asp.net ?

    [SEE POSTING GUIDELINES]

    Thanks in advance
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    I believe that richtextboxes are only available to windows forms.

    Comment

    • hellboss
      New Member
      • Jun 2007
      • 50

      #3
      Originally posted by kenobewan
      I believe that richtextboxes are only available to windows forms.
      Yes ! but i concluded it by using iframe tag which is used only for display.

      But now the problem for me is, to dynamically change the source(src) in the iframe tag

      I need to display a doc file inside the iframe and programmaticall y control the Src file path .Is there any possibility of changing it ? the below code for contains the code which i used.

      <iframe name="iframe"
      height="600"
      width="800"
      src="file://Filepath" id="Frame1" runat=server language="javas cript" onblur="return IFRAME1_onblur( )">
      </iframe>

      Please provide a valid solution.

      Thanks in advance !

      Comment

      • kenobewan
        Recognized Expert Specialist
        • Dec 2006
        • 4871

        #4
        Here is an article that may help:
        Loading pages in IFRAME dynamically from codebehind - ASP.NET

        Comment

        Working...