.chm Files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vinodpm
    New Member
    • Nov 2008
    • 2

    .chm Files

    How to open .chm ( Help files) through .Net (asp.net + vb.net).
  • SvenV
    New Member
    • Oct 2008
    • 50

    #2
    I know you can open something in a winforms app with the following line (c#):
    System.Diagnost ics.Process.Sta rt(@"c:\info.ch m");

    I don't know however if this is possible in ASP.NET, but you could try..

    Comment

    • vinodpm
      New Member
      • Nov 2008
      • 2

      #3
      Originally posted by SvenV
      I know you can open something in a winforms app with the following line (c#):
      System.Diagnost ics.Process.Sta rt(@"c:\info.ch m");

      I don't know however if this is possible in ASP.NET, but you could try..

      Thanks.......
      i tried it with asp.net but it is not working.

      Comment

      • prasadgvl
        New Member
        • Nov 2008
        • 3

        #4
        Have you tried the following?

        if you .chm is available at:
        http://yourserver/yourfile.chm

        then, you may be able to open it by:

        Code:
        <script>
        window.open('http://yourserver/yourfile.chm')
        </script>
        If you want this to happen on server-side, then you can have the above code spit-out by server code (RegisterClient Script).

        Hope that helps.

        Comment

        Working...