Opening and writing to client side applications (notepad.exe)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • connor_a@hotmail.com

    Opening and writing to client side applications (notepad.exe)

    Hi everyone,

    I want the user to be able to click a button on my website that
    creates a new text file, writes to it and then runs notepad to display
    the text file.

    How can this be coded on the client side? Works fine but only on
    server side at the moment. ;-)

    Thanks for any assistance.
  • bruce barker

    #2
    Re: Opening and writing to client side applications (notepad.exe)

    a browser will not support this. you will need to write an active/x
    control for IE and a plugin for everything else.

    the best you can do with server only code is to download the text as an
    attachment. the user can then save and open it themselves.

    -- bruce (sqlwork.com)

    connor_a@hotmai l.com wrote:
    Hi everyone,
    >
    I want the user to be able to click a button on my website that
    creates a new text file, writes to it and then runs notepad to display
    the text file.
    >
    How can this be coded on the client side? Works fine but only on
    server side at the moment. ;-)
    >
    Thanks for any assistance.

    Comment

    • connor_a@hotmail.com

      #3
      Re: Opening and writing to client side applications (notepad.exe)

      On Jun 18, 12:22 pm, bruce barker <nos...@nospam. comwrote:
      a browser will not support this. you will need to write an active/x
      control for IE and a plugin for everything else.
      >
      the best you can do with server only code is to download the text as an
      attachment. the user can then save and open it themselves.
      >
      -- bruce (sqlwork.com)
      >
      conno...@hotmai l.com wrote:
      Hi everyone,
      >
      I want the user to be able to click a button on my website that
      creates a new text file, writes to it and then runs notepad to display
      the text file.
      >
      How can this be coded on the client side? Works fine but only on
      server side at the moment. ;-)
      >
      Thanks for any assistance.
      Thanks Bruce for the reply ..I circumvented problem by using a windows
      textbox and displaying the output in that.

      Thanks.

      Comment

      Working...